Rspack is a high performance JavaScript bundler written in Rust. It offers strong compatibility with the webpack ecosystem, allowing for seamless replacement of webpack, and provides lightning fast build speeds.
⨠Features
đ Fast Startup: Based on Rust, the build speed is extremely fast, bringing you the ultimate development experience.
⥠Lightning HMR: With a built-in incremental compilation mechanism, HMR is extremely fast and fully capable of developing large-scale projects.
đĻ Webpack Compatible: Compatible with plugins and loaders in the webpack ecosystem, seamlessly integrating excellent libraries built by the community.
đ¨ Module Federation: Provide first-class support for Module Federation to facilitate the development of large-scale web applications.
đ ī¸ Production Optimization: Various optimization strategies are built in by default, such as tree shaking, minification, etc.
đ¯ Framework Agnostic: Not bound to any frontend framework, ensuring enough flexibility.
@ScriptedAlchemy for creating Module Federation and helping Rspack connect with the community.
The SWC project created by @kdy1, which powers Rspack's code parsing, transformation and minification.
The esbuild project created by @evanw, which inspired the concurrent architecture of Rspack.
The NAPI-RS project created by @Brooooooklyn, which powers Rspack's node-binding implementation.
The Parcel project created by @devongovett which is the pioneer of rust bundler and inspired Rspack's incremental rebuild design.
The Vite project created by Evan You which inspired Rspack's compatibility design of webpack's ecosystem.
The rolldown-legacy project created by old Rolldown team, It's the predecessor of the rolldown project, which explores the possibility of making a performant bundler in Rust with Rollup-compatible API. It inspires the design principles of Rspack.