Files
TechradarDev/radar/2024-06-01/remix.md
2024-07-10 11:05:49 +02:00

13 lines
686 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: "Remix"
ring: adopt
quadrant: languages-and-frameworks
tags: [coding, frontend]
---
With Remix v2.2.0 Remix itself is now just a Vite plugin. This gives us access to the entire ecosystem of Vite plugins and even more, for example:
- **Near-instant dev startup.** Vite lazily compiles your app code on-demand, so the dev server can boot immediately.
- **Pre-bundled dependencies.** Vite only processes dependencies once, so large libraries like Material UI and AntD dont become bottlenecks for rebuilds nor hot updates.
- **Incremental hot updates.** Vite keeps track of dependencies so it only needs to reprocess app code that depends on the changes.