UNPKG

8.51 kBMarkdownView Raw
1# Rollup
2
3<p align="center">
4 <a href="https://travis-ci.org/rollup/rollup">
5 <img src="https://api.travis-ci.org/rollup/rollup.svg?branch=master"
6 alt="build status">
7 </a>
8 <a href="https://www.npmjs.com/package/rollup">
9 <img src="https://img.shields.io/npm/v/rollup.svg"
10 alt="npm version">
11 </a>
12 <a href="https://packagephobia.now.sh/result?p=rollup">
13 <img src="https://packagephobia.now.sh/badge?p=rollup"
14 alt="install size">
15 </a>
16 <a href="#backers" alt="sponsors on Open Collective">
17 <img src="https://opencollective.com/rollup/backers/badge.svg" />
18 </a>
19 <a href="#sponsors" alt="Sponsors on Open Collective">
20 <img src="https://opencollective.com/rollup/sponsors/badge.svg" />
21 </a>
22 <a href="https://github.com/rollup/rollup/blob/master/LICENSE.md">
23 <img src="https://img.shields.io/npm/l/rollup.svg"
24 alt="license">
25 </a>
26 <a href="https://david-dm.org/rollup/rollup">
27 <img src="https://david-dm.org/rollup/rollup/status.svg"
28 alt="dependency status">
29 </a>
30 <a href='https://gitter.im/rollup/rollup?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
31 <img src='https://badges.gitter.im/rollup/rollup.svg'
32 alt='Join the chat at https://gitter.im/rollup/rollup'>
33 </a>
34</p>
35
36
37## Overview
38
39Rollup 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.
40
41## Quick Start Guide
42
43Install 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/#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](http://rollupjs.org/).
44
45### Commands
46
47These 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.
48
49For browsers:
50
51```bash
52# compile to a <script> containing a self-executing function
53$ rollup main.js --format iife --name "myBundle" --file bundle.js
54```
55
56For Node.js:
57
58```bash
59# compile to a CommonJS module
60$ rollup main.js --format cjs --file bundle.js
61```
62
63For both browsers and Node.js:
64
65```bash
66# UMD format requires a bundle name
67$ rollup main.js --format umd --name "myBundle" --file bundle.js
68```
69
70## Why
71
72Developing 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.
73
74This 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. The specification is now implemented in all major browsers and in Node.js behind the --experimental-modules flag for ".mjs" files. Rollup allows you to write your code using this module system, either outputting optimized ES modules for use in these native environments, or compiling it back down to existing supported 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...
75
76## Tree Shaking
77
78In 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.
79
80For example, with CommonJS, the *entire tool or library must be imported*.
81
82```js
83// import the entire utils object with CommonJS
84var utils = require( 'utils' );
85var query = 'Rollup';
86// use the ajax method of the utils object
87utils.ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
88```
89
90But with ES modules, instead of importing the whole `utils` object, we can just import the one `ajax` function we need:
91
92```js
93// import the ajax function with an ES import statement
94import { ajax } from 'utils';
95var query = 'Rollup';
96// call the ajax function
97ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
98```
99
100Because 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.
101
102## Compatibility
103
104### Importing CommonJS
105
106Rollup can import existing CommonJS modules [through a plugin](https://github.com/rollup/rollup-plugin-commonjs).
107
108### Publishing ES Modules
109
110To 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 2](https://webpack.js.org/) will [import the ES module version](https://github.com/rollup/rollup/wiki/pkg.module) directly.
111
112## Contributors
113
114This project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].
115<a href="https://github.com/rollup/rollup/graphs/contributors"><img src="https://opencollective.com/rollup/contributors.svg?width=890" /></a>
116
117
118## Backers
119
120Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/rollup#backer)]
121
122<a href="https://opencollective.com/rollup#backers" target="_blank"><img src="https://opencollective.com/rollup/backers.svg?width=890"></a>
123
124
125## Sponsors
126
127Support 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)]
128
129<a href="https://opencollective.com/rollup/sponsor/0/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/0/avatar.svg"></a>
130<a href="https://opencollective.com/rollup/sponsor/1/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/1/avatar.svg"></a>
131<a href="https://opencollective.com/rollup/sponsor/2/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/2/avatar.svg"></a>
132<a href="https://opencollective.com/rollup/sponsor/3/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/3/avatar.svg"></a>
133<a href="https://opencollective.com/rollup/sponsor/4/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/4/avatar.svg"></a>
134<a href="https://opencollective.com/rollup/sponsor/5/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/5/avatar.svg"></a>
135<a href="https://opencollective.com/rollup/sponsor/6/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/6/avatar.svg"></a>
136<a href="https://opencollective.com/rollup/sponsor/7/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/7/avatar.svg"></a>
137<a href="https://opencollective.com/rollup/sponsor/8/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/8/avatar.svg"></a>
138<a href="https://opencollective.com/rollup/sponsor/9/website" target="_blank"><img src="https://opencollective.com/rollup/sponsor/9/avatar.svg"></a>
139
140
141
142## License
143
144[MIT](https://github.com/rollup/rollup/blob/master/LICENSE.md)