Build tools and bundlers for modern JavaScript development — from zero-config setups to highly configurable pipelines.

- **[Vite](https://vitejs.dev/)** — native-ESM dev server and build tool; extremely fast HMR and build times, widely adopted for modern frontend projects
- **[esbuild](https://esbuild.github.io/)** — extremely fast JavaScript/TypeScript bundler and minifier written in Go; often used as the underlying engine in other tools
- **[Rollup](https://rollupjs.org/)** — ES module bundler optimized for libraries; produces clean, tree-shaken output with excellent code splitting
- **[Oxc](https://oxc.rs/)** — Rust-based JavaScript/TypeScript toolchain (parser, linter, transformer, bundler); aims to replace multiple tools with a single fast pipeline
- **[Parcel](https://parceljs.org/)** — zero-configuration bundler; handles JS, CSS, HTML, and assets out of the box without any config files
- **[Webpack](https://webpack.js.org/)** — highly configurable module bundler for complex apps; large plugin ecosystem, de-facto standard before Vite's rise