137: Tim Neutkens - Continuing to Innovate with Next.js 9.3
Episode
83 min
Read time
2 min
Topics
Remote Work, Software Development, Science & Discovery
AI-Generated Summary
Key Takeaways
- ✓Static Props API: Get static props generates pages at build time with data fetching, eliminating server overhead for content that changes infrequently. Pages export async functions that fetch from any source—CMS, database, or filesystem—with code automatically tree-shaken from browser bundles.
- ✓Fallback Rendering: Get static paths with fallback mode pre-renders top pages at build time while generating remaining routes on-demand upon first request. Subsequent visits serve cached static HTML, avoiding full rebuilds for thousands of blog posts while maintaining instant performance.
- ✓Server Props Benefits: Get server side props always runs server-side, consolidating multiple API calls into one cacheable endpoint. This reduces round-trip latency for international users and enables direct database queries without exposing credentials to browsers, eliminating intermediate API layers entirely.
- ✓Incremental Regeneration: The revalidate key triggers background page regeneration after specified seconds, serving stale content instantly while updating for next visitor. Users never wait for renders—a one-second revalidate keeps content fresh without sacrificing speed, unlike traditional cache-busting approaches.
- ✓Portable Architecture: All Next.js features work on any Node.js host using next start command, not just Vercel. The framework uses standard HTTP request/response objects and stale-while-revalidate headers, allowing deployment to Heroku, AWS, or custom infrastructure with CDN configuration.
What It Covers
Tim Neutkens explains Next.js 9.3's paradigm shift from server-side rendering to hybrid static generation with get static props and get server side props, enabling per-page optimization without infrastructure lock-in to Vercel's platform.
Key Questions Answered
- •Static Props API: Get static props generates pages at build time with data fetching, eliminating server overhead for content that changes infrequently. Pages export async functions that fetch from any source—CMS, database, or filesystem—with code automatically tree-shaken from browser bundles.
- •Fallback Rendering: Get static paths with fallback mode pre-renders top pages at build time while generating remaining routes on-demand upon first request. Subsequent visits serve cached static HTML, avoiding full rebuilds for thousands of blog posts while maintaining instant performance.
- •Server Props Benefits: Get server side props always runs server-side, consolidating multiple API calls into one cacheable endpoint. This reduces round-trip latency for international users and enables direct database queries without exposing credentials to browsers, eliminating intermediate API layers entirely.
- •Incremental Regeneration: The revalidate key triggers background page regeneration after specified seconds, serving stale content instantly while updating for next visitor. Users never wait for renders—a one-second revalidate keeps content fresh without sacrificing speed, unlike traditional cache-busting approaches.
- •Portable Architecture: All Next.js features work on any Node.js host using next start command, not just Vercel. The framework uses standard HTTP request/response objects and stale-while-revalidate headers, allowing deployment to Heroku, AWS, or custom infrastructure with CDN configuration.
Notable Moment
The Vercel dashboard moved entirely to static generation with skeleton screens served from CDN, using SWR for client-side data fetching and preload tags embedded in HTML to start API connections before React boots, eliminating server-side rendering overhead completely.
Episode Transcript
This episode of Fullstack Radio, I talked to Tim Noykins about what's new in Next. Js 9.3 and how it's changing, how they are building applications at Zite. This is Fullstack Radio episode one thirty seven. So the reason I wanna have you on the show is, Next. Js 9.3 came out recently, which, just looking at the version number sounds like it might just be a small incremental change, but in practice, actually introduces some really kind of paradigm changing, features about the way people use Next, at least in the way that I understand it. So, maybe I think the best place to start would be talking a little bit about, the major sort of new additions that came in, in 9.3 and and what they do. And then we can just kinda have some discussions around that because there's a lot of questions that I have about that stuff. So how do you sort of explain to people what kind of the major, improvements are in Next 09/2003? Right. So, basically, this whole shift started with the release of Next nine, where we released like, basically, like, for those who don't know it, Next is a, framework for React, that makes it really easy to build, web applications. So So it goes from websites to web apps, etcetera. But from, like, the very first release, like, the main thing that we focused on was making it really easy to use React, but also to use server side rendering. Right? So, like, on demand rendering, like, every request that comes in, a new render of the React app happens server side. So that allows you to, like, optimize for, search engine optimization, to, like, get a faster paint to by, basically, like, sending the full HTML, on demand. But, starting from x nine, we basically started focusing on also providing you this, like, not rendering on demand, but rendering at build time, so static generation, basically. Like, the first feature that we released to, like, achieve that is that pages that didn't have blocking data requirements that used get initial props at the time, would be exported statically automatically at build time. The reason for that is if you didn't have, blocking data requirements, the page was already static. It was rerendering the same thing every time on demand. That would obviously, like, take up server resources, be slower, etcetera. So, basically, that was an optimization. So we call it the automatic static optimization. And that means that if you don't have blocking data requirements, it's static. Yeah. So maybe to, like, get into that a little bit so people are clear on it. At least the way I understand it is, like, prior to that feature, basically, you are paying, like, a penalty on any really simple pages, because everything was trying to be rendered the same way. So everything was sort of working with this, like, lowest common denominator assuming, like, oh, when we're gonna need …
Get the full transcript (14,174 words) + summary by email — free
One-time email with the complete transcript and AI summary of this episode. No account needed.
One email, no spam. We’ll also show you what SignalCast does.
You just read a 3-minute summary of a 80-minute episode.
Get Full Stack Radio summarized like this every Monday — plus up to 2 more podcasts, free.
Pick Your Podcasts — FreeKeep Reading
More from Full Stack Radio
153: DHH – Omarchy and Designing Your Own OS on Arch Linux
Aug 21 · 76 min
a16z Podcast
Steven Sinofsky on Apple at 50, Microsoft, and the Future of Computing
Jun 2
More from Full Stack Radio
152: Ben Orenstein - How to Stand Out When Applying for a Job at a Small Company
Jan 28 · 47 min
Eye on AI
Loris Degioanni: Why AI Is Breaking Cybersecurity, and What Comes Next
May 6
Books, tools, and gear mentioned in this episode
SignalCast may earn commission on purchases via these links.
Tools
- Next.jsBy guest
by Vercel
“Tim Neutkens explains Next.js 9.3's paradigm shift from server-side rendering to hybrid static generation with get static props and get server side props, enabling per-page optimization without infrastructure lock-in to Vercel's platform.”
- SWRBy guest
by Vercel
“The Vercel dashboard moved entirely to static generation with skeleton screens served from CDN, using SWR for client-side data fetching and preload tags embedded in HTML to start API connections before React boots.”
More from Full Stack Radio
We summarize every new episode. Want them in your inbox?
153: DHH – Omarchy and Designing Your Own OS on Arch Linux
152: Ben Orenstein - How to Stand Out When Applying for a Job at a Small Company
151: DHH – Building HEY with Hotwire
150: Secret Screencasting Tips & Behind the Scenes of Tailwind CSS 2.0
149: Choosing a Payment Processor, Radical Icons & W3C Hype
Similar Episodes
Related episodes from other podcasts
a16z Podcast
Jun 2
Steven Sinofsky on Apple at 50, Microsoft, and the Future of Computing
Eye on AI
May 6
Loris Degioanni: Why AI Is Breaking Cybersecurity, and What Comes Next
Software Engineering Daily
Mar 31
FreeBSD with John Baldwin
No Priors: Artificial Intelligence | Technology | Startups
Feb 12
Rivian’s Roadmap to AI Architecture and Autonomy with Founder and CEO RJ Scaringe
The Genius Life
Feb 2
547: How to Become the CEO of Your Own Biology, and Stop Outsourcing Your Health | Darshan Shah, MD
Explore Related Topics
This podcast is featured in Best Cybersecurity Podcasts (2026) — ranked and reviewed with AI summaries.
Read this week's Software Engineering Podcast Insights — cross-podcast analysis updated weekly.
You're clearly into Full Stack Radio.
Every Monday, we deliver AI summaries of the latest episodes from Full Stack Radio and 192+ other podcasts. Free for one show.
Start My Monday DigestNo credit card · Unsubscribe anytime