Topic · 57 articles
Next.js
The App Router, server components, and rendering strategy.
Next.js is how I take React to production. This hub covers the App Router in practice: server versus client components, data fetching and caching, the SSR/SSG/ISR trade-offs, route handlers and server actions, and the SEO and performance work that a marketing or product site actually needs.
It connects to the React, TypeScript, and Node.js hubs, and much of it comes from the React & Next.js Complete Guide series.
Frequently asked questions
Do these Next.js articles use the App Router or the Pages Router?
The App Router. The coverage is built around server components, layouts, route handlers, and server actions — the modern Next.js model — rather than the older Pages Router.
Which Next.js rendering strategy should I use?
It depends on the data. The articles work through SSR, SSG, and ISR and when each fits — static generation for content that rarely changes, server rendering for per-request data, and incremental regeneration for the middle ground.