MCPcopy
hub / github.com/rollup/rollup

github.com/rollup/rollup @v4.62.2 sqlite

repository ↗ · DeepWiki ↗ · release v4.62.2 ↗
10,978 symbols 34,700 edges 12,724 files 85 documented · 1%
README
<a href="https://rollupjs.org/"><img src="https://rollupjs.org/rollup-logo.svg" width="150" /></a>

npm version node compatibility install size code coverage backers sponsors license Join the chat at https://is.gd/rollup_chat

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:

# 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

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.

// 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.

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]. . If you want to contribute yourself, head over to the contribution guidelines.

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 Logo

TNG has been supporting the work of Lukas Taegert-Atkinson on Rollup since 2017.

License

MIT

Extension points exported contracts — how you extend this code

DeoptimizableEntity (Interface)
(no doc) [21 implementers]
src/ast/DeoptimizableEntity.ts
AwaitingEventEmitter (Interface)
(no doc) [1 implementers]
src/rollup/types.d.ts
InitOutput (Interface)
(no doc)
wasm/bindings_wasm.d.ts
MemoryUsage (Interface)
(no doc)
browser/src/process.ts
LicenseHandler (Interface)
(no doc)
build-plugins/generate-license-file.ts
Nested (Interface)
(no doc)
cli/run/batchWarnings.ts
TestConfigBase (Interface)
(no doc)
test/types.d.ts
Options (Interface)
(no doc)
test/typescript/index.ts

Core symbols most depended-on inside this repo

log
called by 7321
src/Module.ts
require
called by 1358
test/incremental/index.js
define
called by 865
test/misc/umd.js
require
called by 749
test/function/samples/compact/_config.js
exports
called by 595
test/chunking-form/samples/amd-id-auto/_config.js
define
called by 560
test/form/samples/supports-core-js/_expected.js
factory
called by 432
test/form/samples/side-effect-c/main.js
push
called by 384
scripts/perf-report/report-collector.js

Shape

Function 7,035
Method 2,309
Class 1,470
Interface 160
Enum 4

Languages

TypeScript100%

Modules by API surface

test/form/samples/supports-core-js/_expected.js1,054 symbols
test/form/samples/object-tree-shaking-issue-5734/module.js435 symbols
test/form/samples/object-tree-shaking-issue-5734/_expected.js435 symbols
src/utils/logs.ts105 symbols
src/rollup/types.d.ts97 symbols
test/form/samples/supports-es6-shim/_expected.js92 symbols
src/Module.ts68 symbols
src/Chunk.ts59 symbols
src/ast/nodes/shared/Node.ts43 symbols
src/ast/nodes/MemberExpression.ts40 symbols
test/form/samples/side-effects-class-getters-setters/main.js39 symbols
test/form/samples/removes-unused-babel-helpers/main.js32 symbols

Dependencies from manifests, versioned

@codemirror/commands6.10.3 · 1×
@codemirror/lang-javascript6.2.5 · 1×
@codemirror/language6.12.3 · 1×
@codemirror/search6.7.0 · 1×
@codemirror/state6.6.0 · 1×
@codemirror/view6.43.1 · 1×
@emnapi/core1.11.1 · 1×
@emnapi/runtime1.11.1 · 1×
@eslint/js10.0.1 · 1×
@inquirer/prompts7.10.1 · 1×
@jridgewell/sourcemap-codec1.5.5 · 1×
@mermaid-js/mermaid-cli11.15.0 · 1×

For agents

$ claude mcp add rollup \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact