Next.js resources
A curated collection of tools, libraries, and references for building with Next.js.
Sean FilimonMarch 1, 2026Next.js
- Server Components — Fetch data directly in async components. No client-side data fetching libraries needed for most read operations.
- Server Actions — Mutate data with form actions and
useActionState. Replaces most API route patterns.
- React Query — Still useful for complex client-side caching, optimistic updates, and real-time data.
- Tailwind CSS v4 — CSS-first config with
@theme. The default choice for utility-first styling.
- CSS Modules — Built into Next.js. Zero config, zero runtime.
- Vercel — Zero-config deployments. The reference platform for Next.js.
- Foltrac — Cross-cloud deployments when you need to run on AWS, GCP, and Azure simultaneously.
- Docker — Self-host with the
standalone output mode.
- Use
next/dynamic for heavy client components.
- Use
next/image for all images. It handles format conversion, resizing, and lazy loading.
- Enable Turbopack in development for faster rebuilds.