Jacar mascot — reading along A laptop whose eyes follow your cursor while you read.
Desarrollo de Software

Remix v2: The React Current Centered on Web Standards

Remix v2: The React Current Centered on Web Standards

Actualizado: 2026-05-03

Remix[1] has existed in parallel conversation with Next.js for years. Its bet is different: web standards (Request, Response, FormData) over proprietary abstractions, progressive enhancement, and nested routes with declarative data loading. With Shopify’s 2022 acquisition and convergence with React Router in v7, the project reinforces its position as a mature alternative to the Next.js ecosystem.

Key takeaways

  • Remix models loaders and actions as server functions working with standard Request/Response: no proprietary abstractions.
  • Progressive enhancement is structural: forms work without JavaScript; JS adds optimistic UI on top.
  • Convergence with React Router 7 unifies the API and expands the potential market.
  • For form-heavy, portable apps with small teams, Remix competes well with Next.js App Router.
  • For RSC-intensive workloads or when the plugin ecosystem matters, Next.js remains the more consolidated option.

What distinguishes Remix

Five principles: web standards first, progressive enhancement structural, nested routes with declarative data loading, form-based mutations, per-route error boundaries.

The loader / action pattern

export async function loader({ params }) {
  const user = await db.user.findById(params.id);
  return { user };
}

export async function action({ request, params }) {
  const form = await request.formData();
  await db.user.update(params.id, { name: form.get("name") });
  return redirect(`/users/${params.id}`);
}

loader resolves data on the server before render. action handles mutations with standard FormData. Declarative UI. No fetch boilerplate, no manual error handling, no state synchronisation.

v2 novelties

Remix v2 (late 2023): Vite as default bundler (exit from legacy Webpack), improved CSS bundling, more flexible error boundaries, improved performance in parallel loaders.

React Router 7: the convergence

In 2024, Shopify announced the fusion of Remix with React Router as React Router 7 (a.k.a. Remix Framework Mode): Remix API becomes the “framework mode” of React Router 7; classic React Router continues as “library mode”; smooth migration path between the two.

Remix vs Next.js App Router

Remix: web-standards-first philosophy, Vite bundler, multi-target deployment (Node, CF, Deno), no RSC primarily. Next.js App Router: React Server Components, Webpack/Turbopack, Vercel-optimised, broader plugin ecosystem.

When Remix fits better

Well: form-heavy apps (CRUD, admin panels), progressive enhancement as functional requirement, portable deployment across platforms, small team (more explicit API, less magic to debug).

Less well: RSC-intensive apps, projects requiring Next.js plugin ecosystem, edge-first with heavy SSG.

First-class form handling

<Form> component handles submits automatically to the route’s action. useFetcher for navigation-less mutations. useNavigation for optimistic UI without extra libraries. Next.js Server Actions approach this model but Remix had it first and more polished.

Conclusion

Remix is a legitimate and mature alternative in the React ecosystem. Its web-standards and progressive enhancement philosophy makes it stand out for CRUD apps, form-heavy workloads, and portable deployment. Convergence with React Router reinforces its position. For new projects, the choice between Remix and Next.js depends on: RSC-intensive? Next.js. Portability, simplicity, forms? Remix. Both are production-ready; the decision is pragmatic, not ideological.

Was this useful?
[Total: 11 · Average: 4.5]
  1. Remix

Written by

CEO - Jacar Systems

Passionate about technology, cloud infrastructure and artificial intelligence. Writes about DevOps, AI, platforms and software from Madrid.