Viewing docs for an older release. View latest

Browser Support

Remix only runs in browsers that support ES Modules.

Usually teams are concerned about IE11 support when asking this question. Note that Microsoft itself has stopped supporting this browser for their web applications and it's probably time for you, too.

However, thanks to first-class support for Progressive Enhancement, Remix apps can support browsers as old as Netscape 1.0! This works because Remix is built on the foundations of the web: HTML, HTTP, and browser behavior. By following Remix conventions, your app can work at a baseline level for IE11, while still providing a highly interactive SPA experience for modern browsers. It doesn't take much effort on your part to achieve this, either.

Here's how it works. The Remix <Scripts/> component renders module script tags like this:

<script type="module" src="..." />

Older browsers ignore it because they don't understand the type, so no JavaScript is loaded. Links, loaders, forms, and actions still work because they are built on the foundations of HTML, HTTP and browser behavior. Modern browsers will load the scripts, providing enhanced SPA behavior with faster transitions and the enhanced UX of your application code.

Docs and examples licensed under MIT