Rollup Overview 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…
Rollup
Overview
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.
Quick Start Guide
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.
Commands
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:
bash
# compile to a containing a self-executing function
rollup main.js --format iife --name "myBundle" --file bundle.js
For Node.js:
bash
# compile to a CommonJS module
rollup main.js --format cjs --file bundle.js
For both browsers and Node.js:
bash
# UMD format requires a bundle name
rollup main.js --format umd --name "myBundle" --file bundle.js
Why
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...
Tree Shaking
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_.
js
// 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:
js
// 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.
Compatibility
Importing CommonJS
Rollup can import existing CommonJS modules through a plugin.
Publishing ES Modules
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.
Contributors
This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. . If you want to contribute yourself, head over to the [contribution guidelines](CONTRIBUTING.md).
Backers
Thank you to all our backers! 🙏 [Become a backer]
Sponsors
Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]
Special Sponsor
TNG has been supporting the work of Lukas Taegert-Atkinson on Rollup since 2017.
License
Members
-
rollup ★ PINNED
Next-generation ES module bundler
JavaScript ★ 26k 1d agoExplain → -
plugins
🍣 The one-stop shop for official Rollup plugins
JavaScript ★ 3.8k 1mo agoExplain → -
awesome
⚡️ Delightful Rollup Plugins, Packages, and Resources
★ 2.7k 3mo agoExplain → -
rollup-starter-lib
Bare-bones example of how to create a library using Rollup
JavaScript ★ 991 2y agoExplain → -
rollup-plugin-babel ▣
This package has moved and is now available at @rollup/plugin-babel / https://github.com/rollup/plugins/tree/master/packages/babel
JavaScript ★ 702 6y agoExplain → -
rollup-plugin-commonjs ▣
This module has moved and is now available at @rollup/plugin-commonjs / https://github.com/rollup/plugins/blob/master/packages/commonjs
JavaScript ★ 501 6y agoExplain → -
rollup-plugin-node-resolve ▣
This module has moved and is now available at @rollup/plugin-node-resolve / https://github.com/rollup/plugins/blob/master/packages/node-resolve
JavaScript ★ 469 6y agoExplain → -
rollup-starter-app
Bare-bones example of how to create an application using Rollup
JavaScript ★ 445 3y agoExplain → -
rollup-starter-project
Sample project for packages built using rollup.
JavaScript ★ 324 8y agoExplain → -
rollup-plugin-typescript ▣
This module has moved and is now available at @rollup/plugin-typescript / https://github.com/rollup/plugins/blob/master/packages/typescript
JavaScript ★ 323 6y agoExplain → -
rollup-starter-code-splitting
Starter project with code-splitting and dynamic imports, for modern and legacy browsers
JavaScript ★ 255 2y agoExplain → -
rollup-plugin-alias ▣
This module has moved and is now available at @rollup/plugin-alias / https://github.com/rollup/plugins/tree/master/packages/alias
JavaScript ★ 172 6y agoExplain → -
rollup-plugin-multi-entry ▣
This module has moved and is now available at @rollup/plugin-multi-entry / https://github.com/rollup/plugins/blob/master/packages/multi-entry
JavaScript ★ 171 4y agoExplain → -
rollup-plugin-replace ▣
This module has moved and is now available at @rollup/plugin-replace / https://github.com/rollup/plugins/blob/master/packages/replace
JavaScript ★ 164 4y agoExplain → -
rollup-plugin-json ▣
This module has moved and is now available at @rollup/plugin-json / https://github.com/rollup/plugins/blob/master/packages/json
JavaScript ★ 126 4y agoExplain → -
rollup-watch ▣
Fast incremental rebuilds with Rollup CLI
JavaScript ★ 92 9y agoExplain → -
three-jsnext
three.js, but futuristic
JavaScript ★ 86 7y agoExplain → -
rollupjs.org
Rollup demo website
Svelte ★ 79 3y agoExplain → -
rollup-plugin-wasm ▣
This module has moved and is now available at @rollup/plugin-wasm / https://github.com/rollup/plugins/blob/master/packages/wasm
WebAssembly ★ 79 6y agoExplain → -
rollup-docs-cn
Rollup.js 中文文档 - Built with Vitepress
JavaScript ★ 78 5d agoExplain → -
rollup-plugin-inject ▣
This module has moved and is now available at @rollup/plugin-inject / https://github.com/rollup/plugins/blob/master/packages/inject
JavaScript ★ 77 4y agoExplain → -
rollup-plugin-url ▣
This module has moved and is now available at @rollup/plugin-url / https://github.com/rollup/plugins/blob/master/packages/url
JavaScript ★ 75 4y agoExplain → -
rollup-plugin-run ▣
This module has moved and is now available at @rollup/plugin-run / https://github.com/rollup/plugins/blob/master/packages/run
JavaScript ★ 64 6y agoExplain → -
rollup-plugin-strip ▣
This module has moved and is now available at @rollup/plugin-strip / https://github.com/rollup/plugins/blob/master/packages/strip
JavaScript ★ 50 4y agoExplain → -
babel-preset-es2015-rollup
babel-preset-es2015, minus modules, plus helpers
JavaScript ★ 48 7y agoExplain → -
rollup-pluginutils ▣
This package has moved and is now available at @rollup/pluginutils / https://github.com/rollup/plugins
TypeScript ★ 45 6y agoExplain → -
rollup-plugin-buble ▣
This module has moved and is now available at @rollup/plugin-buble / https://github.com/rollup/plugins/blob/master/packages/buble
JavaScript ★ 43 6y agoExplain → -
rollup-plugin-image ▣
This module has moved and is now available at @rollup/plugin-image / https://github.com/rollup/plugins/blob/master/packages/image
JavaScript ★ 41 6y agoExplain → -
plugin-auto-install ▣
This module has moved and is now available at @rollup/plugin-auto-install / https://github.com/rollup/plugins/blob/master/packages/auto-install
JavaScript ★ 41 6y agoExplain → -
rollup-plugin-virtual ▣
This module has moved and is now available at @rollup/plugin-virtual / https://github.com/rollup/plugins/blob/master/packages/virtual
JavaScript ★ 41 6y agoExplain → -
d3-jsnext ▣
d3, but futuristic
JavaScript ★ 33 7y agoExplain → -
rollup-babel ▣
[DEPRECATED] Experimental rollup/babel integration
JavaScript ★ 28 7y agoExplain → -
rollup-plugin-sucrase ▣
This package has moved and is now available at @rollup/plugin-sucrase / https://github.com/rollup/plugins/blob/master/packages/sucrase
JavaScript ★ 23 6y agoExplain → -
stream
🍣 Stream Rollup build results
TypeScript ★ 21 2y agoExplain → -
rollup-plugin-butternut ▣
This module is no longer maintained. Please use https://www.npmjs.com/package/rollup-plugin-terser
JavaScript ★ 20 6y agoExplain → -
rollup-plugin-ractive ▣
Precompile Ractive components
JavaScript ★ 11 6y agoExplain → -
rollup-plugin-yaml ▣
This module has moved and is now available at @rollup/plugin-yaml / https://github.com/rollup/plugins/blob/master/packages/yaml
JavaScript ★ 11 6y agoExplain → -
rollup-plugin-legacy ▣
Add export statements to plain scripts. Moved to https://github.com/rollup/plugins/blob/master/packages/legacy
JavaScript ★ 10 6y agoExplain → -
eslint-config-rollup
A shareable ESLint configuration for Rollup projects
JavaScript ★ 9 3y agoExplain → -
rollup-init
Initialise Rollup configuration
JavaScript ★ 7 9y agoExplain → -
rollup-starter-plugin
Starter code for creating a Rollup plugin
JavaScript ★ 5 3y agoExplain → -
rollup-plugin-dsv ▣
This module has moved and is now available at @rollup/plugin-dsv / https://github.com/rollup/plugins/blob/master/packages/dsv
JavaScript ★ 5 6y agoExplain → -
log
🌳
TypeScript ★ 4 7y agoExplain → -
containers
📤
Dockerfile ★ 4 5y agoExplain → -
hull
🛳
JavaScript ★ 2 7y agoExplain → -
rollup-docs-az
"Rollup"ın Azərbaycan dilində dokumentasiyası / Rollup docs in Azerbaijani
JavaScript ★ 1 1mo agoExplain → -
rollup-docs-tr
Rollup docs in Turkish
JavaScript ★ 1 8mo agoExplain → -
org
Organizational issues and tasks for Rollup
★ 1 6y agoExplain →
No repos match these filters.