
Remix v2 Has a Free Full-Stack Framework: Web Standards First, Nested Routing, and Progressive Enhancement
Next.js App Router introduced server components, cache layers, and use client boundaries. Your mental model now includes RSC payloads, parallel routes, intercepting routes, and cache revalidation strategies. What if full-stack React just used web standards? Forms, HTTP, cookies, headers — the stuff browsers already understand? That's Remix v2. Web platform first, framework magic second. What Remix v2 Gives You Web standards — Request , Response , FormData , Headers — no proprietary APIs Nested routing with parallel data loading — parent and child routes load data simultaneously Progressive enhancement — forms work without JavaScript, then enhance with JS Error boundaries per route — errors are isolated, not page-killing Built-in optimistic UI — useNavigation , useFetcher for instant feedback Vite-powered — fast builds, HMR, standard plugin ecosystem Quick Start npx create-remix@latest my-app cd my-app && npm run dev Loader + Action Pattern — The Core of Remix // app/routes/contacts.$co
Continue reading on Dev.to React
Opens in a new tab




