UNPKG

6.08 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://github.com/rollup/rollup/blob/master/LICENSE.md">
13 <img src="https://img.shields.io/npm/l/rollup.svg"
14 alt="license">
15 </a>
16 <a href="https://david-dm.org/rollup/rollup">
17 <img src="https://david-dm.org/rollup/rollup/status.svg"
18 alt="dependency status">
19 </a>
20 <a href="https://codecov.io/github/rollup/rollup?branch=master">
21 <img src="https://codecov.io/gh/rollup/rollup/branch/master/graph/badge.svg" alt="Coverage via Codecov" />
22 </a>
23 <a href='https://gitter.im/rollup/rollup?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
24 <img src='https://badges.gitter.im/rollup/rollup.svg'
25 alt='Join the chat at https://gitter.im/rollup/rollup'>
26 </a>
27</p>
28
29## Overview
30
31Rollup 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 new standardized format for code modules included in the ES6 revision of JavaScript, instead of previous idiosyncratic solutions such as CommonJS and AMD. ES6 modules let you freely and seamlessly combine the most useful individual functions from your favorite libraries. This will eventually be possible natively, but Rollup lets you do it today.
32
33## Quick Start Guide
34
35Install with `npm install --global rollup`. Rollup can be used either through a [command line interface](https://github.com/rollup/rollup/wiki/Command-Line-Interface) with an optional configuration file, or else through its [JavaScript API](https://github.com/rollup/rollup/wiki/JavaScript-API). Run `rollup --help` to see the available options and parameters. The [starter project template](https://github.com/rollup/rollup-starter-project) demonstrates common configuration options, and more detailed instructions are available throughout the [user guide](http://rollupjs.org/).
36
37### Commands
38
39These 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.
40
41For browsers:
42
43```bash
44# compile to a <script> containing a self-executing function
45$ rollup main.js --format iife --output bundle.js
46```
47
48For Node.js:
49
50```bash
51# compile to a CommonJS module
52$ rollup main.js --format cjs --output bundle.js
53```
54
55For both browsers and Node.js:
56
57```bash
58# UMD format requires a bundle name
59$ rollup main.js --format umd --name "myBundle" --output bundle.js
60```
61
62## Why
63
64Developing 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.
65
66This finally changed with the ES6 revision of JavaScript, which includes a syntax for importing and exporting functions and data so they can be shared between separate scripts. The specification is now fixed, but it is not yet implemented in browsers or Node.js. Rollup allows you to write your code using the new module system, and will then compile 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...
67
68## Tree Shaking
69
70In addition to enabling the use of ES6 modules, Rollup also statically analyzes 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.
71
72For example, with CommonJS, the *entire tool or library must be imported*.
73
74```js
75// import the entire utils object with CommonJS
76var utils = require( 'utils' );
77var query = 'Rollup';
78// use the ajax method of the utils object
79utils.ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
80```
81
82But with ES6 modules, instead of importing the whole `utils` object, we can just import the one `ajax` function we need:
83
84```js
85// import the ajax function with an ES6 import statement
86import { ajax } from 'utils';
87var query = 'Rollup';
88// call the ajax function
89ajax( 'https://api.example.com?search=' + query ).then( handleResponse );
90```
91
92Because 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.
93
94## Compatibility
95
96### Importing CommonJS
97
98Rollup can import existing CommonJS modules [through a plugin](https://github.com/rollup/rollup-plugin-commonjs).
99
100### Publishing ES6 Modules
101
102To make sure your ES6 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, ES6-aware tools like Rollup and [webpack 2](https://webpack.js.org/) will [import the ES6 module version](https://github.com/rollup/rollup/wiki/pkg.module) directly.
103
104## Links
105
106- step-by-step [tutorial video series](https://code.lengstorf.com/learn-rollup-js/), with accompanying written walkthrough
107- miscellaneous issues in the [wiki](https://github.com/rollup/rollup/wiki)
108
109## License
110
111[MIT](https://github.com/rollup/rollup/blob/master/LICENSE.md)