Next.js 10
nextjs.org
Next.js 10
1–10 of 206 posts
Re: Next.js 10
#2Re: Next.js 10
#3- On-demand image optimization, lazy loading, via an Image component (responsive sizes, formats)
- Internationalization support (routing via domain or subpath)
- Next.js analytics. Automated performance testing and tracking https://nextjs.org/analytics
- Next.js commerce. Starter kit for high-performance ecommerce https://nextjs.org/commerce
Blog post: https://nextjs.org/blog/next-10
Full changelog: https://github.com/vercel/next.js/releases/tag/v10.0.0
Re: Next.js 10
#4Re: Next.js 10
#5No matter how nice a framework looks, it's a deal breaker when there's no TS support. It's just too hard dealing with a large Javascript code base.
Re: Next.js 10
#6Re: Next.js 10
#7Prediction: Google buys Vercel, kills Angular, steps further into e-commerce
Re: Next.js 10
#8Prediction: Google buys Vercel, kills Angular, steps further into e-commerce
Re: Next.js 10
#9If I don't want a full page reload when clicking a new tab for example? Or if I want to implement the age old header, sidebar main content layout without importing the header/sidebar in all my routes/components?
I'm aware there are hacks to get around this but would be nice if the standard next router supported nested routing with persistent layouts for those who need it : https://github.com/vercel/next.js/issues/8193
Re: Next.js 10
#10AFAIK only Marko has this feature today. Since it's developed and used at Ebay they focused on the best SSR+hydration experience from the start.
Imba v2 will also have patial hydration (confirmed by the devs here on HN).
Other than those two, it seems nobody is really taking partial/progressive/lazy hydration seriously. IMO SSR+partial hydration is really the next frontier in web development.
It's possible to do it yourself (I did it recently with a Svelte project) but it results in complicated setups. We need a solution that does it transparently, extracting the needed components and data automatically.