Remix 3 Beta Is Out and Remix Jam 2026 Is Coming to Toronto

Published on 22.05.2026

motyl.dev<div></div></>FRONTEND

Remix 3 Beta Preview: A Full-Stack Framework That Finally Means It

TLDR: The Remix team released a beta preview of Remix 3, a ground-up rethink of the framework that covers the entire stack from routing to auth to UI components. It's not production-ready yet, but it's ready enough for experiments and feedback. The stated goal is simple: install Remix, start building.

Summary:

There's something different about how the Remix team is talking about Remix 3. The prior versions of Remix and React Router were described as "center stack" — they owned routing and rendering and handed everything else off to you. Remix 3 is a departure from that philosophy. The ambition is genuinely full-stack: routes, request handlers, responses, middleware, sessions, auth, forms, uploads, assets, data management, UI components, theming, tests. The whole thing, under one roof.

That said, the team is careful to point out this isn't a monolith. Remix 3 is built from small, composable packages that can stand on their own. The pitch is that you shouldn't have to spend your first afternoon wiring together a dozen unrelated dependencies before you can write a single route. You install Remix and you build. That's it.

The technical direction is interesting and worth paying attention to. Remix 3 routes are Fetch API routes. Controllers return standard responses. Middleware owns the request lifecycle. Forms submit to URLs. This sounds obvious when you say it out loud, but it's actually a fairly principled commitment to web platform primitives rather than framework-specific abstractions. One concept I find genuinely interesting here is "frames" — server-rendered UI with a src attribute that the client can load, navigate, or reload independently while the server continues rendering HTML. It's web-native server/client communication without a separate RPC layer.

The component model also deserves attention. Remix components use plain JavaScript variables for state, explicit updates, abortable async work, and behavior composed with mixins. The code is procedural: first do this, then do that. No hooks. No reactive proxy magic. The team positions this as both easier for humans to follow and better-suited for AI agents working with the codebase, and I think they're onto something real there.

The "unbundling" approach to assets is perhaps the most structurally interesting piece. Modern web development has accepted bundling as a baseline assumption, to the point where framework APIs have started bending around what bundlers can understand. Remix 3 inverts this: the runtime is the source of truth. There are no special semantics around import statements. The app model doesn't depend on a big pre-runtime analysis step. That's a meaningful philosophical shift, and it's the kind of thing that only becomes clear after years of watching bundlers accumulate complexity.

Key takeaways:

  • Remix 3 beta is available now via npx remix@next new my-remix-app
  • The framework covers routing, sessions, auth, forms, uploads, static files, asset delivery, data, server rendering, UI components and more
  • Routes are Fetch API routes; controllers return standard responses; middleware owns the request lifecycle
  • "Frames" enable server-rendered UI fragments that load and reload independently
  • Component model uses procedural JavaScript, not reactive hooks
  • "Unbundling" means the runtime is the source of truth, not a pre-runtime bundler analysis
  • Not production-ready; designed for experiments, prototypes, and feedback

Why do I care: I've been watching the JavaScript framework space long enough to get skeptical when someone announces "full stack." It usually means "we added a database adapter." Remix 3 reads differently. The commitment to web platform primitives — Fetch API, standard responses, URL-based forms, HTML over the wire for frames — is a genuine architectural stance, not a marketing angle. The procedural component model is a real departure from the hooks paradigm that's dominated React development for years. Whether it sticks is an open question, but as someone who thinks about what frameworks look like in five years, I find this direction more compelling than yet another signals-based reactivity system. The bet that clear, predictable shapes are better for both humans and AI agents is worth taking seriously.

Remix 3 Beta Preview


Remix Jam 2026: Toronto, October 2nd, Early Bird Tickets Now Open

TLDR: Remix Jam is returning to Toronto on October 2nd, 2026. Early bird tickets are available now with limited seats. The conference will focus on Remix 3 and real-world web development, featuring talks from the core team and product builders.

Summary:

Remix Jam 2026 is happening on October 2nd in Toronto, and the team opened early bird ticket sales this week. If you were at last year's conference, you already know the format: talks from the Remix core team, practitioners building real apps, and a look at where the framework is heading. This year the whole show will be organized around Remix 3.

The conference will cover Remix 3 features, modules, and ideas, with perspective from the core team, product builders, and people working on modern web application architecture. The full speaker lineup and schedule aren't posted yet, but the team has said they're coming. There will be a livestream on the Remix YouTube channel for people who can't make it in person. Toronto Pearson International Airport is the recommended arrival point for most attendees, with Billy Bishop City Airport as a closer downtown option.

One practical note: there are no refunds, but tickets are transferable. If you need a letter of invitation for visa purposes, Shopify can provide one. The team is also putting together hotel blocks and will notify ticket holders when booking links are ready.

The framing in the newsletter is worth noting. Last year the team showed an extremely early version of what would become Remix 3. This year they have multiple betas out and are tracking toward a stable release. The conference will land at a point where Remix 3 is real, documented, and ready to talk about in concrete terms.

Key takeaways:

  • Remix Jam 2026 is October 2nd in Toronto
  • Early bird tickets are available now, limited seats
  • Focus is on Remix 3 and real-world web development
  • No CFP; talks are curated from the core team and select builders
  • Livestreamed on the Remix YouTube channel
  • Tickets are non-refundable but transferable
  • Hotel blocks and full schedule coming soon

Why do I care: Conferences organized around a specific framework version are a different kind of event than general web development gatherings. When a core team builds a whole conference around a major release, you get the real story on design decisions, tradeoffs, and what was left on the cutting room floor. Given that Remix 3 is a significant architectural bet, Remix Jam 2026 is probably the best place to understand whether the full-stack-from-one-install promise actually holds up under real production conditions. Worth going if you're seriously evaluating Remix 3 for your stack.

Remix Jam 2026

External Links (2)