RSPack 2.0: Performance Gains, Leaner Dependencies and ESM Core
By Dillip Chowdary • Jul 21, 2026 • Source: InfoQ
Rspack, developed by ByteDance, has released version 2.0. The release centers on performance gains, leaner dependencies, and a stronger focus on modern ECMAScript modules. The project has also grown sharply in adoption, with npm downloads exceeding 5.
Technically, 2.0 moves the core to pure ESM. That pairs with improved static analysis and support for RSC. The dependency surface is smaller, and the published benchmarks point to large cuts in build times rather than small incremental wins.
Advertisement
Tech Pulse Daily
Get tomorrow's pulse first
Join engineers who read Tech Pulse before stand-up. Free, weekday mornings.
For engineers and builders, the useful change is less about branding and more about day-to-day cost. Faster builds shorten local and CI feedback loops. A pure ESM core and thinner dependency tree reduce install weight and modernize the module graph. RSC support matters for teams already shipping React Server Components who want bundler behavior that matches that stack instead of fighting it.
In market terms, Rspack is no longer a quiet experiment. ByteDance’s backing, measurable build-time gains, and adoption past the multi-million download threshold put it in the same conversation as other high-performance JavaScript bundlers. The ESM-first and RSC-oriented design also tracks where large frontend codebases are already moving.
Watch whether teams adopt 2.0 for greenfield ESM setups first, then migrate heavier webpack-era apps. Track real build-time numbers on your own graph size, how cleanly RSC support lands in production pipelines, and whether the leaner dependency set holds up under plugin and framework ecosystems.
Advertisement