Malte Ubl Profile picture
Oct 25 23 tweets 6 min read
So excited to be at #nextjsconf! Follow along on this 🧵for some background technical info on the things being announced at the keynote today!
Releasing Turbopack!
With the alpha version of Turbopack the team at @vercel led by @wSokra, the creator of webpack, is shipping something that has long been a dream of mine: A JS bundler designed from the ground up to support incremental compilation
turbo.build/pack
@vercel @wSokra While other bundlers support incremental compilation at dev time, Turbopack is designed to extend the same incremental processing model to production! Fix a typo on your login page–Turbopack will only do the absolute minimal amount of work to actually update your site
Systems like Google’s bazel can do cached compilation with massive concurrency–but once it comes to compiling the JavaScript of massive apps like Gmail it still comes down to a single machine running a single process that does all the work…
…and does it from scratch every time a build is started. With Turbopack we are exploring towards a future where even the largest apps can compile quickly and deploy at a moment's notice.
Next.js 13!
Next 13 is built on React Server Components (RSC) from the ground up. RSC is such a game changer for the web. React components execute only on the server by default.
Your page has 10, 100, or 1000 components–the JavaScript size stays the same. And if you need client-side behavior for individual components, they seamlessly upgrade to run on the client–all fully integrated into a single render-tree rather than independent islands.
I’m excited about the new data fetching in Next.js based on the use hook. If you want to picture how this is different from traditional Next.js and other mainstream frameworks, then think of how we did data-fetching in PHP.
I know this sounds a little crazy but there is something magical about the composition you get from components fetching their own data, rather than routes having to supply the data for all nested components on the page or layout at the root.
Of course, PHP being non-concurrent had performance problems, but Suspense in React takes care of this by avoiding the dreaded backend request waterfalls between components.
I think we as dev-community have overcorrected from some of the PHP UI-data-mishmash. During my time at Google we worked with similar co-colocation of components & data (Known as Wiz Component to my friends at big G) & I’m excited to see this adopted by the wider React community
As an example, this just allows you to add components like <RecommendedProducts productId=”123”/>. Note, how I’m not passing in the actual data. The component knows how to get it, itself, and so the data fetching doesn’t leak to the composing component.
In old-school React you could do this by fetching the data on the client, but in Next 13 the data-fetching happens at render-time on the server with streaming.
Streaming!
With the launch of Next 13 @vercel is shipping streaming support for rendering of React Server Components (RSC) for both our edge and serverless functions.
It’s no big secret that our serverless functions are running on AWS Lambda, and, uhm, AWS Lambda does not support streaming. I’m not going to reveal how we made it work, but maybe you can guess.
Super proud of the team for getting this out of the door. For the longest time most frameworks & certainly React, just didn’t support streaming for SSR–but with RSC streaming is now actually a thing. Excited that streaming will just work when you deploy RSC to Vercel.
A new next/image!
Brought to you by the Chrome team and @vercel is the next generation of next/image. A lighter replacement for the component that is all in on #useThePlatform
- Native lazy-loading
- Native layout-shift-free aspect-ratio
- SVG-based blurry placeholder (lower CPU usage over CSS techniques)
- Easier styling with CSS
@​next/font!
Loading fonts on the web is genuinely difficult to get right. @​next/font puts all the best practices together by default and with minimal effort:
- Layout shift is eliminated through the use of the new CSS props size-adjust, ascent-override, etc.
- These properties are automatically extracted from the font files. No manual tuning created.
- Supports Google Fonts without any data going to Google
- Fonts are downloaded at build time
- All files are served from your own origin (perf++, privacy++)
- Automatic subsetting to your locale (smaller size)
- Prefers variable fonts (smaller size, easier to use)
- Automatic preloading
- Built by the Chrome team and @vercel
Finally! We’re shipping a beta of Vercel Analytics. A web-analytics product designed for the post-GDPR world.

- 0 third-party requests: Better performance, security, and privacy

- Not a pure server-side analytics solution: Can understand client-side navigation and events
- Tiny JavaScript payload (again served by your own domain, and only communicating with your domain)

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Malte Ubl

Malte Ubl Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @cramforce

Oct 25
Just a tiny bit hyped
Image
SB Bay Ferry at night
Read 6 tweets
Jun 18
@aboodman @kentcdodds Tree-shaking: go from entry points and find reachable code. Serialize the visited AST nodes.
DCE: for each symbol, see if it has any references, if no, remove. If n++ < maxNumberOfAttempts repeat.
@aboodman @kentcdodds Kent's second tweet mentions something else which is not what is typically referred to as dead code elimination although it does remove dead code. This is constant folding
You want to do that first before the above.
@aboodman @kentcdodds Tree shaking was sometimes used for a simplified algorithm where it is only performed on the ES6 module export graph, but there really is no reason to limit it to that.
The module hoisting implemented first by closure compiler but now used in all modern bundlers makes it trivial.
Read 4 tweets
Jun 13, 2019
So, micro frontends. This might be a word that @shubhie, I, et. al. might have uttered a few times when we were working on this stuff 6-7 years ago. Even back then we might have felt the need to wash our mouth after, but the thing we ended up building was good. A thread:
Our mission was to port the good ideas from Google's emerging to be great and now hyper-successful micro service architecture to be available to frontend engineering.
"If two components are being developed independently, increase the likelihood that they work when integrated on the same page".
Read 10 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(