# Vite Vite is the de facto standard build tool of the JavaScript world, created by Evan You (Vue) in 2020. Its original insight: serve source files over native ES modules in development — instant startup, hot module replacement in milliseconds — and only bundle for production. That killed the webpack-era "wait for the bundler" tax, and most modern frameworks now ship Vite as their default toolchain. ## The Rolldown era Vite 8 (stable March 2026) replaced its dual engine — esbuild for dev, Rollup for production — with **Rolldown**, a single Rust bundler built for the purpose (1.0 in May 2026). One engine everywhere ends the dev/prod behavior mismatches, keeps plugin compatibility, and delivers 10-30x faster production builds. [[Oxc]] supplies the parser, resolver, and transformer underneath. ## The ownership arc - **2024** — Evan You founds VoidZero to fund full-time toolchain development ([[Oxc]], Rolldown, Vitest, Vite itself) - **June 2026** — [[Cloudflare]] acquires VoidZero. Vite, Vitest, Rolldown, and Oxc stay MIT and vendor-agnostic (Cloudflare committed $1M to an independent ecosystem fund), while the toolchain gets first-class integration with [[Cloudflare Workers]] — local code to edge deployment as a one-click path The web's standard build tool is now owned by an edge network. Convenient today; a concentration of infrastructure worth keeping an eye on — the same "inserting itself everywhere" concern raised about [[Cloudflare Wallets]] applies to owning the toolchain. ## References - [Vite Website](https://vite.dev) - [Vite 8 announcement](https://vite.dev/blog/announcing-vite8) - [Rolldown 1.0](https://voidzero.dev/posts/announcing-rolldown-1-0) - [Cloudflare acquires VoidZero](https://www.cloudflare.com/press/press-releases/2026/cloudflare-acquires-voidzero-to-build-the-future-of-the-ai-native-web/) ## Related - [[Oxc]] — the Rust foundation under Vite's Rolldown era - [[Cloudflare]] · [[Cloudflare Workers]] — the new owner and deployment target - [[ESLint]] · [[Prettier]] — the legacy tools the same wave is replacing