@swc/core, esbuild, rollup, vite, and webpack are foundational tools in the JavaScript ecosystem that handle compilation, bundling, and development server functionality. While they share overlapping responsibilities — such as transforming modern JavaScript, managing dependencies, and optimizing assets for production — each takes a distinct architectural approach. @swc/core and esbuild are primarily high-speed compilers written in lower-level languages (Rust and Go, respectively), optimized for raw transformation speed. rollup specializes in producing clean, minimal bundles ideal for libraries, using an ES module-first design. webpack is a highly configurable module bundler capable of handling complex applications with diverse asset types through its plugin and loader system. vite leverages native ES modules in development for near-instant startup and uses either esbuild or @swc/core for production builds, offering a modern developer experience built around speed and simplicity.
Choosing the right build tool can make or break your frontend architecture. These five tools — @swc/core, esbuild, rollup, vite, and webpack — all solve parts of the same problem but with different philosophies. Let’s cut through the noise and compare them on real engineering concerns.
@swc/core is a Rust-based JavaScript/TypeScript compiler. It transforms code (e.g., JSX → JS, TS → JS, modern syntax → older syntax) but does not bundle modules by itself. Think of it as Babel’s faster cousin.
// @swc/core: Transform code only
import * as swc from '@swc/core';
const { code } = await swc.transformFile('src/index.ts', {
jsc: {
parser: { syntax: 'typescript' },
target: 'es2015'
}
});
// Returns transformed string — no bundling, no file I/O beyond input
esbuild is a Go-based bundler and compiler that does both transformation and bundling extremely fast. It supports basic code splitting, minification, and CSS handling out of the box.
// esbuild: Bundle and transform in one step
require('esbuild').build({
entryPoints: ['src/index.js'],
outfile: 'dist/bundle.js',
bundle: true,
minify: true,
target: 'es2015'
});
rollup is a module bundler focused on producing clean, efficient bundles, especially for libraries. It uses ES modules natively and has best-in-class tree-shaking.
// rollup.config.js
export default {
input: 'src/index.js',
output: {
file: 'dist/bundle.cjs',
format: 'cjs'
}
};
// Run via CLI: rollup -c
vite is a development server and build tool that uses native ES modules in dev for instant startup and delegates production builds to rollup (with optional esbuild or @swc/core for transpilation).
// vite.config.js
export default {
build: {
// Uses rollup under the hood
}
};
// Dev server: vite
// Build: vite build
webpack is a feature-rich module bundler that treats everything as a module (JS, CSS, images, etc.) and uses loaders/plugins for transformation and optimization.
// webpack.config.js
module.exports = {
entry: './src/index.js',
output: {
filename: 'bundle.js',
path: path.resolve(__dirname, 'dist')
},
module: {
rules: [
{ test: /\.ts$/, use: 'ts-loader' }
]
}
};
In development, speed matters. Here’s how they compare:
vite wins for near-instant startup because it serves source files directly over native ES modules — no bundling needed during dev.esbuild can serve as a dev server too, but it still bundles on startup, so it’s slower than Vite for large projects.webpack’s dev server is mature but slow to start on big apps due to full initial bundling.rollup and @swc/core don’t include dev servers — you’d need to add rollup-plugin-serve or integrate with another tool.// Vite: Instant HMR with native ESM
// No config needed for basic React/Vue/Svelte
// Edit a file → browser updates in <50ms
// Webpack: HMR works but requires plugin setup
// module.hot.accept() calls often needed for full reload avoidance
For final output, consider these trade-offs:
rollup produces the cleanest, smallest bundles for libraries thanks to precise tree-shaking and no runtime overhead.webpack offers the most control over chunking, caching strategies, and runtime behavior — essential for complex apps.esbuild is fast but lacks advanced optimizations like scope hoisting; its minifier is good but not as thorough as Terser.vite uses rollup for production, so you get Rollup-quality output with Vite’s DX.@swc/core doesn’t bundle, so you’d pair it with another tool (e.g., swc-loader + webpack).// esbuild minification (fast but less aggressive)
esbuild.build({ minify: true });
// webpack with Terser (slower but smaller output)
optimization: {
minimizer: [new TerserPlugin()]
}
// rollup with terser plugin
import terser from '@rollup/plugin-terser';
plugins: [terser()]
webpack has the largest ecosystem — thousands of loaders and plugins for every imaginable use case (e.g., css-loader, file-loader, mini-css-extract-plugin).rollup has a solid plugin system but fewer options; best for standard workflows.vite reuses Rollup plugins in production and has its own plugin API for dev server hooks.esbuild has limited plugin support (only for loading/transforming files, not for bundling logic).@swc/core supports custom Rust or JavaScript plugins for AST manipulation but isn’t designed for asset handling.// webpack: Chain multiple loaders
{ test: /\.scss$/, use: ['style-loader', 'css-loader', 'sass-loader'] }
// vite: Pre-configured CSS handling
// Just import .scss files — no config needed
// esbuild: Basic CSS support only
// No built-in Sass or PostCSS — must preprocess externally
vite: Minimal config for common stacks. Zero config for React, Vue, etc.esbuild: Simple API but limited knobs to turn.rollup: Moderate config — straightforward for libraries, trickier for apps.webpack: High complexity. Requires understanding of entries, outputs, loaders, plugins, resolve rules, etc.@swc/core: Low config for transformation, but you must build the rest of the pipeline yourself.rollup// rollup.config.js for library
export default {
input: 'src/index.js',
output: [
{ file: 'dist/index.es.js', format: 'es' },
{ file: 'dist/index.cjs.js', format: 'cjs' }
],
external: ['lodash'] // keep deps external
};
webpack// webpack: Dynamic imports with named chunks
import(/* webpackChunkName: "dashboard" */ './Dashboard');
vitenpm create vite@latest my-app -- --template react
@swc/core// jest.config.js
transform: {
'^.+\\.tsx?$': ['@swc/jest']
}
esbuild// Build script
esbuild src/index.js --bundle --minify --outfile=public/app.js
@swc/core inside webpack is possible via swc-loader — a common performance upgrade path.| Tool | Language | Bundles? | Dev Server? | Best For | Weaknesses |
|---|---|---|---|---|---|
@swc/core | Rust | ❌ | ❌ | Fast transpilation, Jest, Next.js | No bundling or asset handling |
esbuild | Go | ✅ | ✅ (basic) | Speed-focused apps, prototyping | Limited optimizations/plugins |
rollup | JS | ✅ | ❌ (needs plugin) | Libraries, clean ESM output | Poor for complex app code splitting |
vite | JS | ✅ (via Rollup) | ✅ | Modern apps, DX-focused projects | Less control than webpack |
webpack | JS | ✅ | ✅ | Large apps, full customization | Slow builds, complex config |
esbuild or @swc/corerollupvitewebpack or incrementally adopt SWCThese tools aren’t competitors — they’re complementary. Many projects combine them (e.g., Vite + SWC, Webpack + SWC). Choose based on your team’s needs, not hype.
Choose rollup when building libraries or applications where output bundle size and purity matter more than development server features. Its tree-shaking is among the best in the ecosystem, and its plugin model works well for publishing npm packages with multiple output formats (ESM, CJS, IIFE). Avoid it for large applications requiring code splitting, dynamic imports with complex routing, or built-in dev servers — you’ll need to add those yourself.
Choose vite when you want a batteries-included, fast modern development environment with zero-config support for TypeScript, JSX, CSS, and more, while still allowing deep customization. It’s perfect for new applications (especially React, Vue, or Svelte) where developer experience and instant HMR are priorities. Avoid it if you’re maintaining a legacy Webpack-based app with heavy custom loader logic that’s hard to migrate.
Choose webpack when you need maximum flexibility to handle complex, large-scale applications with diverse asset types, custom resolution logic, or intricate optimization requirements. Its mature plugin and loader ecosystem supports virtually any workflow, making it suitable for enterprise projects with long-term maintenance needs. Avoid it for simple projects or library authoring where its configuration overhead and slower build times aren’t justified.
Choose @swc/core when you need a Rust-based JavaScript/TypeScript compiler that integrates into existing toolchains (like Jest or Next.js) for fast transpilation without full bundling. It’s ideal if you’re already using SWC-compatible frameworks or require custom AST transformations via plugins, but avoid it if you need built-in code splitting, HMR, or asset handling — those must be layered on top.
Choose esbuild when raw build speed is critical and your project can work within its intentionally limited feature set. It excels at rapid development builds and simple production bundling for apps that don’t require advanced optimizations like scope hoisting or fine-grained chunk control. Avoid it if you depend on ecosystem-specific loaders (e.g., CSS modules with complex post-processing) or need deep customization beyond its current API.
Rollup is a module bundler for JavaScript which compiles small pieces of code into something larger and more complex, such as a library or application. It uses the standardized ES module format for code, instead of previous idiosyncratic solutions such as CommonJS and AMD. ES modules let you freely and seamlessly combine the most useful individual functions from your favorite libraries. Rollup can optimize ES modules for faster native loading in modern browsers, or output a legacy module format allowing ES module workflows today.
Install with npm install --global rollup. Rollup can be used either through a command line interface with an optional configuration file or else through its JavaScript API. Run rollup --help to see the available options and parameters. The starter project templates, rollup-starter-lib and rollup-starter-app, demonstrate common configuration options, and more detailed instructions are available throughout the user guide.
These commands assume the entry point to your application is named main.js, and that you'd like all imports compiled into a single file named bundle.js.
For browsers:
# compile to a <script> containing a self-executing function
rollup main.js --format iife --name "myBundle" --file bundle.js
For Node.js:
# compile to a CommonJS module
rollup main.js --format cjs --file bundle.js
For both browsers and Node.js:
# UMD format requires a bundle name
rollup main.js --format umd --name "myBundle" --file bundle.js
Developing software is usually easier if you break your project into smaller separate pieces, since that often removes unexpected interactions and dramatically reduces the complexity of the problems you'll need to solve, and simply writing smaller projects in the first place isn't necessarily the answer. Unfortunately, JavaScript has not historically included this capability as a core feature in the language.
This finally changed with ES modules support in JavaScript, which provides a syntax for importing and exporting functions and data so they can be shared between separate scripts. Most browsers and Node.js support ES modules. However, Node.js releases before 12.17 support ES modules only behind the --experimental-modules flag, and older browsers like Internet Explorer do not support ES modules at all. Rollup allows you to write your code using ES modules, and run your application even in environments that do not support ES modules natively. For environments that support them, Rollup can output optimized ES modules; for environments that don't, Rollup can compile your code to other formats such as CommonJS modules, AMD modules, and IIFE-style scripts. This means that you get to write future-proof code, and you also get the tremendous benefits of...
In addition to enabling the use of ES modules, Rollup also statically analyzes and optimizes the code you are importing, and will exclude anything that isn't actually used. This allows you to build on top of existing tools and modules without adding extra dependencies or bloating the size of your project.
For example, with CommonJS, the entire tool or library must be imported.
// import the entire utils object with CommonJS
var utils = require('node:utils');
var query = 'Rollup';
// use the ajax method of the utils object
utils.ajax('https://api.example.com?search=' + query).then(handleResponse);
But with ES modules, instead of importing the whole utils object, we can just import the one ajax function we need:
// import the ajax function with an ES import statement
import { ajax } from 'node:utils';
var query = 'Rollup';
// call the ajax function
ajax('https://api.example.com?search=' + query).then(handleResponse);
Because Rollup includes the bare minimum, it results in lighter, faster, and less complicated libraries and applications. Since this approach is based on explicit import and export statements, it is vastly more effective than simply running an automated minifier to detect unused variables in the compiled output code.
Rollup can import existing CommonJS modules through a plugin.
To make sure your ES modules are immediately usable by tools that work with CommonJS such as Node.js and webpack, you can use Rollup to compile to UMD or CommonJS format, and then point to that compiled version with the main property in your package.json file. If your package.json file also has a module field, ES-module-aware tools like Rollup and webpack will import the ES module version directly.
This project exists thanks to all the people who contribute. [Contribute]. . If you want to contribute yourself, head over to the contribution guidelines.
Thank you to all our backers! 🙏 [Become a backer]
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
TNG has been supporting the work of Lukas Taegert-Atkinson on Rollup since 2017.