Time and time again, the Next.js (and Zeit) team blow me away. The rate at which they release new, high-quality versions of their products is astounding, especially given how few people are working on this full time -- it's basically just Tim Neutkens, who's insane: he's constantly pushing updates, reviewing PRs, and finds time to be very active on the support channel. We use a bunch of Zeit's tools (particularly Nex…
Curious why you didn't mention Arunoda -- does he not work on it anymore. IIRC Arunoda started Next.js right after (perhaps because of) leaving Meteor ecosystem.
Next.js 7
31–40 of 40 posts
Re: Next.js 7
#32Re: Next.js 7
#33Earlier quoted context omitted.
Curious why you didn't mention Arunoda -- does he not work on it anymore. IIRC Arunoda started Next.js right after (perhaps because of) leaving Meteor ecosystem.
I don't think he created it, but he was there early on and works for Zeit. Still eternal grateful for him creating kadira.
Re: Next.js 7
#34Earlier quoted context omitted.
As others have mentioned, Nuxt.js is what you’re looking for. And, it’s pretty great to work with. Prior to using it, I just got “done” building out my significant project with vue, just plain vue. When I started this next one, I decided to give Nuxt a shot, and it has been like the missing piece I was looking for in the previous app. It provides structure to you app, gives you everything you need to build out a fron…
Thanks for sharing your experiences, could you recommend any resources for plugging data into Nuxt? This is what I've always been curious about coming from Meteor
[2] https://github.com/vuejs/awesome-vue/blob/master/README.md#v...
Re: Next.js 7
#35Re: Next.js 7
#36Earlier quoted context omitted.
I don't think he created it, but he was there early on and works for Zeit. Still eternal grateful for him creating kadira.
Wow, TIL. Also a very nice display of Cunningham's law: "the best way to get the right answer on the internet is not to ask a question; it's to post the wrong answer."
As said elsewhere, I mostly act as a curator of a very large effort of hundreds of individuals. The project was actually co-created by several other people who work on infrastructure at ZEIT (e.g..: Naoyuki Kanezawa led all the initial releases, designed important parts of the framework, Arunoda Susiripala contributed the test harness and key build pipeline infrastructure, and so on).
Re: Next.js 7
#37What's the closest framework for Vue.js and how close is it in terms of functionality? Asking because Next.js has been one of the reasons I've become more interested in the React ecosystem.
As others have mentioned, Nuxt.js is what you’re looking for. And, it’s pretty great to work with. Prior to using it, I just got “done” building out my significant project with vue, just plain vue. When I started this next one, I decided to give Nuxt a shot, and it has been like the missing piece I was looking for in the previous app. It provides structure to you app, gives you everything you need to build out a fron…
Re: Next.js 7
#38Not clear to me from the release notes if there now is an easy way to proxy to a server in development (if you for instance have a Django driven API on port 8000). This is easily done with create-react-app by just adding a line in package.json. In Next you've had to either set up and configure nginx locally or proxia via an Express server, both options that that are a bit of a hassle to set up for such a common case.
That way ypu can use django sessions, authentication, login, admin, etc.
The node server just does rendering, and creates client side JS based on data it is given by Django.
It took 25 lines of code, yes, but pretty much worth it if you have a long term project like a single app that your company is built around.
Re: Next.js 7
#39Could anyone explain what Next.js is? I use React (using create-react-app), but I'm under impression that React is a JavaScript framework (like Spring is Java framework, or RoR is Ruby framework). So Next.js is a framework for a framework?
React is more of a library instead of a framework and it's just the view layer. Next.js is a framework(minimalist) for React. https://github.com/zeit/next.js/
Re: Next.js 7
#40The speed improvements calculations seem weird to me. Shouldn't one build done in 178s instead of 304s be 70% faster instead of 42% faster? (you can do 1.7 of build using the old amount of time)
Both are true statements, however people generally like to discuss how much improved the new releases are versus how much worse the old ones are.
Fun fact, it's important to understand that relationship in other areas as well like the stock market; if your holdings lose 50% of their value, they then need to increase by 100% for you to be back neutral :)