UNPKG

8.84 kBMarkdownView Raw
1<p align="center">
2 <a href="https://rollupjs.org/"><img src="https://rollupjs.org/logo.svg" width="150" /></a>
3</p>
4
5<p align="center">
6 <a href="https://www.npmjs.com/package/rollup">
7 <img src="https://img.shields.io/npm/v/rollup.svg" alt="npm version" >
8 </a>
9 <a href="https://packagephobia.now.sh/result?p=rollup">
10 <img src="https://packagephobia.now.sh/badge?p=rollup" alt="install size" >
11 </a>
12 <a href="https://codecov.io/gh/rollup/rollup">
13 <img src="https://codecov.io/gh/rollup/rollup/graph/badge.svg" alt="code coverage" >
14 </a>
15 <a href="#backers" alt="sponsors on Open Collective">
16 <img src="https://opencollective.com/rollup/backers/badge.svg" alt="backers" >
17 </a>
18 <a href="#sponsors" alt="Sponsors on Open Collective">
19 <img src="https://opencollective.com/rollup/sponsors/badge.svg" alt="sponsors" >
20 </a>
21 <a href="https://github.com/rollup/rollup/blob/master/LICENSE.md">
22 <img src="https://img.shields.io/npm/l/rollup.svg" alt="license">
23 </a>
24 <a href="https://david-dm.org/rollup/rollup">
25 <img src="https://david-dm.org/rollup/rollup/status.svg" alt="dependency status">
26 </a>
27 <a href='https://is.gd/rollup_chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
28 <img src='https://img.shields.io/discord/466787075518365708?color=778cd1&label=chat' alt='Join the chat at https://is.gd/rollup_chat'>
29 </a>
30</p>
31
32<h1 align="center">Rollup</h1>
33
34## Overview
35
36Rollup 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.
37
38## Quick Start Guide
39
40Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://rollupjs.org/#command-line-reference) with an optional configuration file, or else through its [JavaScript API](https://rollupjs.org/guide/en/#javascript-api). Run `rollup --help` to see the available options and parameters. The starter project templates, [rollup-starter-lib](https://github.com/rollup/rollup-starter-lib) and [rollup-starter-app](https://github.com/rollup/rollup-starter-app), demonstrate common configuration options, and more detailed instructions are available throughout the [user guide](https://rollupjs.org/).
41
42### Commands
43
44These 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.
45
46For browsers:
47
48```bash
49# compile to a <script> containing a self-executing function
50rollup main.js --format iife --name "myBundle" --file bundle.js
51```
52
53For Node.js:
54
55```bash
56# compile to a CommonJS module
57rollup main.js --format cjs --file bundle.js
58```
59
60For both browsers and Node.js:
61
62```bash
63# UMD format requires a bundle name
64rollup main.js --format umd --name "myBundle" --file bundle.js
65```
66
67## Why
68
69Developing 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](https://medium.com/@Rich_Harris/small-modules-it-s-not-quite-that-simple-3ca532d65de4). Unfortunately, JavaScript has not historically included this capability as a core feature in the language.
70
71This 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...
72
73## Tree Shaking
74
75In 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.
76
77For example, with CommonJS, the _entire tool or library must be imported_.
78
79```js
80// import the entire utils object with CommonJS
81var utils = require('utils');
82var query = 'Rollup';
83// use the ajax method of the utils object
84utils.ajax('https://api.example.com?search=' + query).then(handleResponse);
85```
86
87But with ES modules, instead of importing the whole `utils` object, we can just import the one `ajax` function we need:
88
89```js
90// import the ajax function with an ES import statement
91import { ajax } from 'utils';
92var query = 'Rollup';
93// call the ajax function
94ajax('https://api.example.com?search=' + query).then(handleResponse);
95```
96
97Because 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.
98
99## Compatibility
100
101### Importing CommonJS
102
103Rollup can import existing CommonJS modules [through a plugin](https://github.com/rollup/plugins/tree/master/packages/commonjs).
104
105### Publishing ES Modules
106
107To 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](https://webpack.js.org/) will [import the ES module version](https://github.com/rollup/rollup/wiki/pkg.module) directly.
108
109## Contributors
110
111This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)]. <a href="https://github.com/rollup/rollup/graphs/contributors"><img src="https://opencollective.com/rollup/contributors.svg?width=890" /></a>
112
113## Backers
114
115Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/rollup#backer)]
116
117<a href="https://opencollective.com/rollup#backers" target="_blank"><img src="https://opencollective.com/rollup/backers.svg?width=890"></a>
118
119## Sponsors
120
121Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [[Become a sponsor](https://opencollective.com/rollup#sponsor)]
122
123<a href="https://opencollective.com/rollup/sponsor/0/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/0/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/1/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/1/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/2/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/2/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/3/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/3/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/4/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/4/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/5/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/5/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/6/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/6/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/7/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/7/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/8/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/8/avatar.svg"></a> <a href="https://opencollective.com/rollup/sponsor/9/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/9/avatar.svg"></a>
124
125## License
126
127[MIT](https://github.com/rollup/rollup/blob/master/LICENSE.md)