webpack/README.md

549 lines
37 KiB
Markdown
Raw Normal View History

2015-07-21 06:29:53 +08:00
[![webpack](https://webpack.github.io/assets/logo.png)](https://webpack.github.io)
2012-03-10 20:11:23 +08:00
2015-07-21 06:29:53 +08:00
[![NPM version][npm-image]][npm-url] [![Gitter chat][gitter-image]][gitter-url] [![Downloads][downloads-image]][downloads-url]
2016-02-04 21:55:00 +08:00
2015-07-13 17:55:29 +08:00
[![NPM][nodei-image]][nodei-url]
2015-07-21 06:29:53 +08:00
build
[![Build Status][travis-image]][travis-url] [![Appveyor Status][appveyor-image]][appveyor-url] [![Coverage Status][coveralls-image]][coveralls-url]
2015-07-13 17:55:29 +08:00
2015-07-21 06:29:53 +08:00
dependencies
[![Dependency Status][david-image]][david-url] [![devDependency Status][david-dev-image]][david-dev-url] [![peerDependency Status][david-peer-image]][david-peer-url]
2015-07-08 21:40:39 +08:00
2015-07-21 06:29:53 +08:00
donation
2016-11-15 07:29:38 +08:00
[[![OpenCollective](https://opencollective.com/webpack/backers/badge.svg)](#backers)](https://opencollective.com/webpack#support)
[[![OpenCollective](https://opencollective.com/webpack/sponsors/badge.svg)](#sponsors)](https://opencollective.com/webpack#support)
[![gratipay donate button][gratipay-image]][gratipay-url]
2015-07-13 17:55:29 +08:00
[![BADGINATOR][badginator-image]][badginator-url]
2015-07-13 17:55:29 +08:00
2016-11-15 07:29:38 +08:00
[documentation v1.x](https://webpack.github.io/docs/?utm_source=github&utm_medium=readme&utm_campaign=top)
[documentation v2.x beta](https://webpack.js.org/?utm_source=github&utm_medium=readme&utm_campaign=top)
This README reflects v1.x.
2012-04-03 22:26:08 +08:00
2013-01-31 01:49:25 +08:00
# Introduction
2012-03-10 20:11:23 +08:00
2015-06-13 03:53:43 +08:00
webpack is a bundler for modules. The main purpose is to bundle JavaScript
2015-03-25 14:43:48 +08:00
files for usage in a browser, yet it is also capable of transforming, bundling,
or packaging just about any resource or asset.
2015-02-26 12:26:43 +08:00
**TL; DR**
2012-03-10 20:11:23 +08:00
* Bundles both [CommonJS](http://wiki.commonjs.org/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
2015-03-25 13:57:09 +08:00
* Can create a single bundle or multiple chunks that are asynchronously loaded at runtime (to reduce initial loading time).
* Dependencies are resolved during compilation reducing the runtime size.
2015-06-13 03:53:43 +08:00
* Loaders can preprocess files while compiling, e.g. coffeescript to JavaScript, handlebars strings to compiled functions, images to Base64, etc.
2015-03-25 14:43:48 +08:00
* Highly modular plugin system to do whatever else your application requires.
# Getting Started
2015-07-21 06:29:53 +08:00
Check out webpack's [documentation](https://webpack.github.io/docs/?utm_source=github&utm_medium=readme&utm_campaign=trdr) for quick Getting Started guide, in-depth usage,
2015-03-25 13:57:09 +08:00
tutorials and resources.
2012-03-10 20:11:23 +08:00
# Installation
2013-12-05 23:28:50 +08:00
2014-04-09 06:20:56 +08:00
project:
2014-04-09 06:21:23 +08:00
`npm install webpack --save-dev`
2014-04-09 06:20:56 +08:00
global:
2014-04-09 06:21:23 +08:00
`npm install webpack -g`
Usage:
2015-07-21 06:29:53 +08:00
https://webpack.github.io/docs/tutorials/getting-started/
2013-12-05 23:28:50 +08:00
2012-05-22 01:31:13 +08:00
# Examples
2013-03-26 23:54:41 +08:00
Take a look at the [`examples`](https://github.com/webpack/webpack/tree/master/examples) folder.
2013-01-31 01:49:25 +08:00
# Features
2014-01-15 06:22:35 +08:00
## Plugins
webpack has a [rich plugin
2015-07-21 06:29:53 +08:00
interface](https://webpack.github.io/docs/plugins.html). Most of the features
2015-03-25 13:57:09 +08:00
within webpack itself use this plugin interface. This makes webpack very
**flexible**.
2014-01-15 06:22:35 +08:00
2015-03-25 14:43:48 +08:00
2014-01-15 06:22:35 +08:00
## Performance
webpack uses async I/O and has multiple caching levels. This makes webpack fast
2015-03-25 13:57:09 +08:00
and incredibly **fast** on incremental compilations.
2014-01-15 06:22:35 +08:00
## Loaders
webpack enables use of loaders to preprocess files. This allows you to bundle
2015-06-13 03:53:43 +08:00
**any static resource** way beyond JavaScript. You can easily [write your own
2015-07-21 06:29:53 +08:00
loaders](https://webpack.github.io/docs/loaders.html) using node.js.
2015-03-25 13:57:09 +08:00
2015-03-25 14:43:48 +08:00
Loaders are activated by using `loadername!` prefixes in `require()` statements,
2015-03-25 13:57:09 +08:00
or are automatically applied via regex from your webpack configuration.
2015-07-21 06:29:53 +08:00
Please see [Using Loaders](https://webpack.github.io/docs/using-loaders.html) for more information.
2015-03-25 13:57:09 +08:00
**basic**
* [`raw`](https://github.com/webpack/raw-loader): Loads raw content of a file (as utf-8)
* [`val`](https://github.com/webpack/val-loader): Executes code as module and consider exports as JavaScript code
* [`script`](https://github.com/webpack/script-loader): Executes a JavaScript file once in global context (like in script tag), requires are not parsed.
**packaging**
* [`file`](https://github.com/webpack/file-loader): Emits the file into the output folder and returns the (relative) url.
* [`url`](https://github.com/webpack/url-loader): The url loader works like the file loader, but can return a Data Url if the file is smaller than a limit.
* [`image`](https://github.com/tcoopman/image-webpack-loader): Compresses your images. Ideal to use together with `file` or `url`.
2015-11-04 23:52:50 +08:00
* [`svgo-loader`](https://github.com/rpominov/svgo-loader): Compresses SVG images using [svgo](https://github.com/svg/svgo) library
2015-03-25 13:57:09 +08:00
* [`baggage`](https://github.com/deepsweet/baggage-loader): Automatically require any resources related to the required one
* [`polymer-loader`](https://github.com/JonDum/polymer-loader): Process HTML & CSS with preprocessor of choice and `require()` Web Components like first-class modules.
**dialects**
* [`coffee`](https://github.com/webpack/coffee-loader): Loads coffee-script like JavaScript
* [`babel`](https://github.com/babel/babel-loader): Turn ES6 code into vanilla ES5 using [Babel](https://github.com/babel/babel).
* [`livescript`](https://github.com/appedemic/livescript-loader): Loads LiveScript like JavaScript
2015-07-21 06:29:53 +08:00
* [`sweetjs`](https://github.com/jlongster/sweetjs-loader): Use sweetjs macros.
2015-03-25 13:57:09 +08:00
* [`traceur`](https://github.com/jupl/traceur-loader): Use future JavaScript features with [Traceur](https://github.com/google/traceur-compiler).
* [`typescript`](https://github.com/andreypopp/typescript-loader): Loads TypeScript like JavaScript.
**templating**
* [`html`](https://github.com/webpack/html-loader): Exports HTML as string, require references to static resources.
* [`jade`](https://github.com/webpack/jade-loader): Loads jade template and returns a function
* [`handlebars`](https://github.com/altano/handlebars-loader): Loads handlebars template and returns a function
* [`ractive`](https://github.com/rstacruz/ractive-loader): Pre-compiles Ractive templates for interactive DOM manipulation
* [`markdown`](https://github.com/peerigon/markdown-loader): Compiles Markdown to HTML
* [`ng-cache`](https://github.com/teux/ng-cache-loader): Puts HTML partials in the Angular's $templateCache
**styling**
* [`style`](https://github.com/webpack/style-loader): Add exports of a module as style to DOM
* [`css`](https://github.com/webpack/css-loader): Loads css file with resolved imports and returns css code
* [`postcss`](https://github.com/postcss/postcss-loader): Loads and compiles css using various [plugins](https://github.com/postcss/postcss#plugins)
2015-03-25 13:57:09 +08:00
* [`less`](https://github.com/webpack/less-loader): Loads and compiles a less file
* [`sass`](https://github.com/jtangelder/sass-loader): Loads and compiles a scss file
* [`stylus`](https://github.com/shama/stylus-loader): Loads and compiles a stylus file
2015-03-25 14:43:48 +08:00
**misc**
2015-11-04 23:52:50 +08:00
* [`po`](https://github.com/perchlayer/po-loader): Loads a PO gettext file and returns JSON
2015-03-25 14:43:48 +08:00
* [`mocha`](https://github.com/webpack/mocha-loader): Do tests with mocha in browser or node.js
2015-03-25 13:57:09 +08:00
* [`eslint`](https://github.com/MoOx/eslint-loader): PreLoader for linting code using ESLint.
* [`jshint`](https://github.com/webpack/jshint-loader): PreLoader for linting code.
* [`jscs`](https://github.com/unindented/jscs-loader): PreLoader for style checking.
* [`injectable`](https://github.com/jauco/webpack-injectable): Allow to inject dependencies into modules
* [`transform`](https://github.com/webpack/transform-loader): Use browserify transforms as loader.
* [`jsbeautify`](https://github.com/tomaszczechowski/jsbeautify-loader): Autoformatting code.
2015-03-25 13:57:09 +08:00
2015-07-21 06:29:53 +08:00
For the full list of loaders, see [list of loaders](https://webpack.github.io/docs/list-of-loaders.html).
2014-01-15 06:22:35 +08:00
2015-03-25 14:43:48 +08:00
## Module Format (AMD/CommonJS)
2014-01-15 06:22:35 +08:00
webpack supports **both** AMD and CommonJS module styles. It performs clever static
2015-03-25 13:57:09 +08:00
analysis on the AST of your code. It even has an evaluation engine to evaluate
2015-03-25 14:43:48 +08:00
simple expressions. This allows you to **support most existing libraries** out of the box.
2014-01-15 06:22:35 +08:00
## Code Splitting
webpack allows you to split your codebase into multiple chunks. Chunks are
2015-03-25 13:57:09 +08:00
loaded asynchronously at runtime. This reduces the initial loading time.
2015-07-21 06:29:53 +08:00
[Code Splitting documentation](https://webpack.github.io/docs/code-splitting.html)
2014-01-15 06:22:35 +08:00
## Optimizations
webpack can do many optimizations to **reduce the output size of your
2015-06-13 03:53:43 +08:00
JavaScript** by deduplicating frequently used modules, minifying, and giving
2015-03-25 13:57:09 +08:00
you full control of what is loaded initially and what is loaded at runtime
2016-08-23 22:36:41 +08:00
through code splitting. It can also make your code chunks **cache
2015-07-21 06:29:53 +08:00
friendly** by using hashes.
2014-01-15 06:22:35 +08:00
2015-07-21 06:29:53 +08:00
[Optimization documentation](https://webpack.github.io/docs/optimization.html)
2014-01-15 06:22:35 +08:00
2014-10-03 05:18:55 +08:00
# A small example of what's possible
2012-03-27 10:23:11 +08:00
``` javascript
// webpack is a module bundler.
2014-02-20 15:52:12 +08:00
// This means webpack takes modules with dependencies
2015-02-26 12:26:43 +08:00
// and emits static assets representing those modules.
2015-07-21 06:29:53 +08:00
// Dependencies can be written in CommonJS
2013-01-31 01:49:25 +08:00
var commonjs = require("./commonjs");
2014-02-20 15:52:12 +08:00
// or in AMD
2015-02-26 12:26:43 +08:00
define(["amd-module", "../file"], function (amdModule, file) {
// while previous constructs are sync,
2014-02-20 15:52:12 +08:00
// this is async
2015-02-26 12:26:43 +08:00
require(["big-module/big/file"], function (big) {
// For async dependencies, webpack splits
// your application into multiple "chunks".
2014-02-20 15:52:12 +08:00
// This part of your application is
2015-02-26 12:26:43 +08:00
// loaded on demand (code-splitting).
2013-01-31 01:49:25 +08:00
var stuff = require("../my/stuff");
2015-02-26 12:26:43 +08:00
// "../my/stuff" is also loaded on-demand
2014-02-20 15:52:12 +08:00
// because it's in the callback function
2015-02-26 12:26:43 +08:00
// of the AMD require.
2013-01-31 01:49:25 +08:00
});
2012-03-27 10:23:11 +08:00
});
2015-07-21 06:29:53 +08:00
2013-01-31 01:49:25 +08:00
require("coffee!./cup.coffee");
2015-02-26 12:26:43 +08:00
// "Loaders" are used to preprocess files.
2014-02-20 15:52:12 +08:00
// They can be prefixed in the require call
2015-02-26 12:26:43 +08:00
// or configured in the configuration.
2013-01-31 01:49:25 +08:00
require("./cup");
2014-02-20 15:52:12 +08:00
// This does the same when you add ".coffee" to the extensions
2015-02-26 12:26:43 +08:00
// and configure the "coffee" loader for /\.coffee$/
function loadTemplate (name) {
2014-02-20 15:52:12 +08:00
return require("./templates/" + name + ".jade");
2015-02-26 12:26:43 +08:00
// Many expressions are supported in require calls.
// A clever parser extracts information and concludes
// that everything in "./templates" that matches
// /\.jade$/ should be included in the bundle, as it
// can be required.
2012-05-12 22:43:37 +08:00
}
2015-02-26 12:26:43 +08:00
// ...and you can combine everything.
function loadTemplateAsync (name, callback) {
2015-07-21 06:29:53 +08:00
require(["bundle?lazy!./templates/" + name + ".jade"],
2015-02-26 12:26:43 +08:00
function (templateBundle) {
templateBundle(callback);
2013-01-31 01:49:25 +08:00
});
2012-05-12 22:43:37 +08:00
}
```
2012-03-10 20:11:23 +08:00
2013-05-31 19:46:21 +08:00
## Documentation
2015-07-21 06:29:53 +08:00
[documentation](https://webpack.github.io/docs/?utm_source=github&utm_medium=readme&utm_campaign=documentation)
2013-05-31 19:46:21 +08:00
2015-02-28 08:31:50 +08:00
## Changelog
2015-07-21 06:29:53 +08:00
[changelog](https://webpack.github.io/docs/changelog.html)
2015-02-28 08:31:50 +08:00
2012-03-10 20:11:23 +08:00
## Tests
You can run the Node tests with `npm test`.
2012-03-10 20:11:23 +08:00
You can run the browser tests:
```
cd test/browsertests
node build
```
2015-02-26 12:26:43 +08:00
and open `tests.html` in the browser.
2012-10-26 06:01:57 +08:00
2012-03-10 20:11:23 +08:00
## Contribution
Most of the time, if webpack is not working correctly for you it is a simple configuration issue.
2015-03-25 13:57:09 +08:00
If you are still having difficulty after looking over your configuration carefully, please post
a question to [StackOverflow with the webpack tag](http://stackoverflow.com/tags/webpack). Questions
that include your webpack.config.js and relevant files are more likely to receive responses.
If you have discovered a bug or have a feature suggestion, feel free to create an issue on Github.
If you create a loader or plugin, please consider open sourcing it, putting it
2015-03-25 13:57:09 +08:00
on NPM and following the `x-loader`, `x-plugin` convention.
2012-03-10 20:11:23 +08:00
2015-03-25 13:57:09 +08:00
You are also welcome to correct any spelling mistakes or any language issues.
2012-03-21 06:28:43 +08:00
2015-03-25 13:57:09 +08:00
If you want to discuss something or just need help, [here is our gitter.im room](https://gitter.im/webpack/webpack).
2012-10-26 06:01:57 +08:00
2012-03-10 20:11:23 +08:00
## License
2016-11-15 07:29:38 +08:00
Copyright (c) JS Foundation
2012-05-25 06:17:02 +08:00
2015-11-04 23:52:50 +08:00
MIT (http://opensource.org/licenses/mit-license.php)
2012-05-12 23:02:20 +08:00
2015-05-20 14:42:11 +08:00
## Thanks to
(In chronological order)
2016-04-09 01:44:19 +08:00
* @google for [Google Web Toolkit (GWT)](https://code.google.com/archive/p/google-web-toolkit), which aims to compile Java to JavaScript. It features a similar [Code Splitting](http://www.gwtproject.org/doc/latest/DevGuideCodeSplitting.html) as webpack.
* @medikoo for [modules-webmake](https://github.com/medikoo/modules-webmake), which is a similar project. webpack was born because I wanted Code Splitting for modules-webpack. Interestingly the [Code Splitting issue is still open](https://github.com/medikoo/modules-webmake/issues/7) (thanks also to @Phoscur for the discussion).
2015-05-20 14:42:11 +08:00
* @substack for [browserify](http://browserify.org/), which is a similar project and source for many ideas.
* @jrburke for [require.js](http://requirejs.org/), which is a similar project and source for many ideas.
2015-05-22 00:55:18 +08:00
* @defunctzombie for the [browser-field spec](https://gist.github.com/defunctzombie/4339901), which makes modules available for node.js, browserify and webpack.
2015-05-20 14:42:11 +08:00
* Every early webpack user, which contributed to webpack by writing issues or PRs. You influenced the direction...
* @shama, @jhnns and @sokra for maintaining this project
* Everyone who has written a loader for webpack. You are the ecosystem...
* Everyone I forgot to mention here, but also influenced webpack.
2016-11-15 07:29:38 +08:00
## Sponsoring
Most of the core team members, webpack contributors and contributors in the ecosystem do this open source work in their free time. If you use webpack for a serious task, and you'd like us to invest more time on it, please donate. This project increases your income/productivity too. It makes development and applications faster and it reduces the required bandwidth.
This is how we use the donations:
2016-11-30 09:06:44 +08:00
* Allow the core team to work on webpack
2016-11-15 07:29:38 +08:00
* Thank contributors if they invested a large amount of time in contributing
* Support projects in the ecosystem that are of great value for users
* Support projects that are voted most (work in progress)
* Infrastructure cost
* Fees for money handling
### Core team
The note shows the main area of involvement. Of course we all contribute in many areas.
<table>
<tbody>
<tr>
<td align="center">
<img src="https://github.com/sokra.png?size=150"><br>
<a href="https://github.com/sokra">Tobias Koppers</a>
</td>
<td>
Core<br><br>
Founder of webpack
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td align="center">
<img src="https://github.com/jhnns.png?size=150"><br>
<a href="https://github.com/jhnns">Johannes Ewald</a>
</td>
<td>
Styling loaders &amp; plugins<br><br>
Early adopter of webpack
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td align="center">
<img src="https://github.com/TheLarkInn.png?size=150"><br>
<a href="https://github.com/TheLarkInn">Sean T. Larkin</a>
</td>
<td>
Public relations<br><br>
Pushed the core team forming
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td align="center">
<img src="https://github.com/bebraw.png?size=150"><br>
<a href="https://github.com/bebraw">Juho Vepsäläinen</a>
</td>
<td>
Documentation<br><br>
Wrote the ebook <a href="https://leanpub.com/survivejs-webpack"><img src="https://cloud.githubusercontent.com/assets/1365881/20286923/93e325c0-aac9-11e6-964d-cabe218c584c.png"> - Webpack</a>
</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td align="center">
<img src="https://github.com/spacek33z.png?size=150"><br>
<a href="https://github.com/spacek33z">Kees Kluskens</a>
</td>
<td>
webpack-dev-server<br><br>
<a href="https://codeyellow.nl/"><img height="15" src="https://cloud.githubusercontent.com/assets/1365881/20286583/ad62eb04-aac7-11e6-9c14-a0fef35b9b56.png"></a> supports his open source work on webpack
</td>
</tr>
</tbody>
</table>
### Early Backers and Sponsors
We had other sources of donations before starting to use OpenCollective. We want to acknowledge these early sponsors and backers, but donations were not public and we are not sure of donors want to stay anonymous. So if you want to be in this list, just drop @sokra a note via mail (`t____.k____@gmail.com`, insert fullname here).
### Sponsors
2015-05-20 14:42:11 +08:00
2016-11-15 07:29:38 +08:00
Become a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/webpack#sponsor)]
2014-01-30 16:03:38 +08:00
2016-11-15 07:29:38 +08:00
<a href="https://opencollective.com/webpack/sponsor/0/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/0/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/1/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/1/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/2/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/2/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/3/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/3/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/4/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/4/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/5/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/5/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/6/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/6/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/7/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/7/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/8/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/8/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/9/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/9/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/10/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/10/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/11/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/11/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/12/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/12/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/13/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/13/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/14/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/14/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/15/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/15/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/16/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/16/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/17/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/17/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/18/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/18/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/19/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/19/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/20/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/20/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/21/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/21/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/22/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/22/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/23/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/23/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/24/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/24/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/25/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/25/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/26/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/26/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/27/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/27/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/28/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/28/avatar.svg"></a>
<a href="https://opencollective.com/webpack/sponsor/29/website" target="_blank"><img src="https://opencollective.com/webpack/sponsor/29/avatar.svg"></a>
2016-11-15 07:29:38 +08:00
## Backers
2014-01-30 16:03:38 +08:00
2016-11-15 07:29:38 +08:00
Become a backer and get your image on our README on Github with a link to your site. [[Become a backer](https://opencollective.com/webpack#backer)]
<a href="https://opencollective.com/webpack/backer/0/website" target="_blank"><img src="https://opencollective.com/webpack/backer/0/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/1/website" target="_blank"><img src="https://opencollective.com/webpack/backer/1/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/2/website" target="_blank"><img src="https://opencollective.com/webpack/backer/2/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/3/website" target="_blank"><img src="https://opencollective.com/webpack/backer/3/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/4/website" target="_blank"><img src="https://opencollective.com/webpack/backer/4/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/5/website" target="_blank"><img src="https://opencollective.com/webpack/backer/5/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/6/website" target="_blank"><img src="https://opencollective.com/webpack/backer/6/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/7/website" target="_blank"><img src="https://opencollective.com/webpack/backer/7/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/8/website" target="_blank"><img src="https://opencollective.com/webpack/backer/8/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/9/website" target="_blank"><img src="https://opencollective.com/webpack/backer/9/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/10/website" target="_blank"><img src="https://opencollective.com/webpack/backer/10/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/11/website" target="_blank"><img src="https://opencollective.com/webpack/backer/11/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/12/website" target="_blank"><img src="https://opencollective.com/webpack/backer/12/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/13/website" target="_blank"><img src="https://opencollective.com/webpack/backer/13/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/14/website" target="_blank"><img src="https://opencollective.com/webpack/backer/14/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/15/website" target="_blank"><img src="https://opencollective.com/webpack/backer/15/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/16/website" target="_blank"><img src="https://opencollective.com/webpack/backer/16/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/17/website" target="_blank"><img src="https://opencollective.com/webpack/backer/17/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/18/website" target="_blank"><img src="https://opencollective.com/webpack/backer/18/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/19/website" target="_blank"><img src="https://opencollective.com/webpack/backer/19/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/20/website" target="_blank"><img src="https://opencollective.com/webpack/backer/20/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/21/website" target="_blank"><img src="https://opencollective.com/webpack/backer/21/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/22/website" target="_blank"><img src="https://opencollective.com/webpack/backer/22/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/23/website" target="_blank"><img src="https://opencollective.com/webpack/backer/23/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/24/website" target="_blank"><img src="https://opencollective.com/webpack/backer/24/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/25/website" target="_blank"><img src="https://opencollective.com/webpack/backer/25/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/26/website" target="_blank"><img src="https://opencollective.com/webpack/backer/26/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/27/website" target="_blank"><img src="https://opencollective.com/webpack/backer/27/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/28/website" target="_blank"><img src="https://opencollective.com/webpack/backer/28/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/29/website" target="_blank"><img src="https://opencollective.com/webpack/backer/29/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/30/website" target="_blank"><img src="https://opencollective.com/webpack/backer/30/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/31/website" target="_blank"><img src="https://opencollective.com/webpack/backer/31/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/32/website" target="_blank"><img src="https://opencollective.com/webpack/backer/32/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/33/website" target="_blank"><img src="https://opencollective.com/webpack/backer/33/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/34/website" target="_blank"><img src="https://opencollective.com/webpack/backer/34/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/35/website" target="_blank"><img src="https://opencollective.com/webpack/backer/35/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/36/website" target="_blank"><img src="https://opencollective.com/webpack/backer/36/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/37/website" target="_blank"><img src="https://opencollective.com/webpack/backer/37/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/38/website" target="_blank"><img src="https://opencollective.com/webpack/backer/38/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/39/website" target="_blank"><img src="https://opencollective.com/webpack/backer/39/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/40/website" target="_blank"><img src="https://opencollective.com/webpack/backer/40/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/41/website" target="_blank"><img src="https://opencollective.com/webpack/backer/41/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/42/website" target="_blank"><img src="https://opencollective.com/webpack/backer/42/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/43/website" target="_blank"><img src="https://opencollective.com/webpack/backer/43/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/44/website" target="_blank"><img src="https://opencollective.com/webpack/backer/44/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/45/website" target="_blank"><img src="https://opencollective.com/webpack/backer/45/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/46/website" target="_blank"><img src="https://opencollective.com/webpack/backer/46/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/47/website" target="_blank"><img src="https://opencollective.com/webpack/backer/47/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/48/website" target="_blank"><img src="https://opencollective.com/webpack/backer/48/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/49/website" target="_blank"><img src="https://opencollective.com/webpack/backer/49/avatar.svg"></a>
2016-11-15 07:29:38 +08:00
<a href="https://opencollective.com/webpack/backer/50/website" target="_blank"><img src="https://opencollective.com/webpack/backer/50/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/51/website" target="_blank"><img src="https://opencollective.com/webpack/backer/51/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/52/website" target="_blank"><img src="https://opencollective.com/webpack/backer/52/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/53/website" target="_blank"><img src="https://opencollective.com/webpack/backer/53/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/54/website" target="_blank"><img src="https://opencollective.com/webpack/backer/54/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/55/website" target="_blank"><img src="https://opencollective.com/webpack/backer/55/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/56/website" target="_blank"><img src="https://opencollective.com/webpack/backer/56/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/57/website" target="_blank"><img src="https://opencollective.com/webpack/backer/57/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/58/website" target="_blank"><img src="https://opencollective.com/webpack/backer/58/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/59/website" target="_blank"><img src="https://opencollective.com/webpack/backer/59/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/60/website" target="_blank"><img src="https://opencollective.com/webpack/backer/60/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/61/website" target="_blank"><img src="https://opencollective.com/webpack/backer/61/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/62/website" target="_blank"><img src="https://opencollective.com/webpack/backer/62/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/63/website" target="_blank"><img src="https://opencollective.com/webpack/backer/63/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/64/website" target="_blank"><img src="https://opencollective.com/webpack/backer/64/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/65/website" target="_blank"><img src="https://opencollective.com/webpack/backer/65/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/66/website" target="_blank"><img src="https://opencollective.com/webpack/backer/66/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/67/website" target="_blank"><img src="https://opencollective.com/webpack/backer/67/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/68/website" target="_blank"><img src="https://opencollective.com/webpack/backer/68/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/69/website" target="_blank"><img src="https://opencollective.com/webpack/backer/69/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/70/website" target="_blank"><img src="https://opencollective.com/webpack/backer/70/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/71/website" target="_blank"><img src="https://opencollective.com/webpack/backer/71/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/72/website" target="_blank"><img src="https://opencollective.com/webpack/backer/72/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/73/website" target="_blank"><img src="https://opencollective.com/webpack/backer/73/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/74/website" target="_blank"><img src="https://opencollective.com/webpack/backer/74/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/75/website" target="_blank"><img src="https://opencollective.com/webpack/backer/75/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/76/website" target="_blank"><img src="https://opencollective.com/webpack/backer/76/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/77/website" target="_blank"><img src="https://opencollective.com/webpack/backer/77/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/78/website" target="_blank"><img src="https://opencollective.com/webpack/backer/78/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/79/website" target="_blank"><img src="https://opencollective.com/webpack/backer/79/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/80/website" target="_blank"><img src="https://opencollective.com/webpack/backer/80/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/81/website" target="_blank"><img src="https://opencollective.com/webpack/backer/81/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/82/website" target="_blank"><img src="https://opencollective.com/webpack/backer/82/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/83/website" target="_blank"><img src="https://opencollective.com/webpack/backer/83/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/84/website" target="_blank"><img src="https://opencollective.com/webpack/backer/84/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/85/website" target="_blank"><img src="https://opencollective.com/webpack/backer/85/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/86/website" target="_blank"><img src="https://opencollective.com/webpack/backer/86/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/87/website" target="_blank"><img src="https://opencollective.com/webpack/backer/87/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/88/website" target="_blank"><img src="https://opencollective.com/webpack/backer/88/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/89/website" target="_blank"><img src="https://opencollective.com/webpack/backer/89/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/90/website" target="_blank"><img src="https://opencollective.com/webpack/backer/90/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/91/website" target="_blank"><img src="https://opencollective.com/webpack/backer/91/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/92/website" target="_blank"><img src="https://opencollective.com/webpack/backer/92/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/93/website" target="_blank"><img src="https://opencollective.com/webpack/backer/93/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/94/website" target="_blank"><img src="https://opencollective.com/webpack/backer/94/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/95/website" target="_blank"><img src="https://opencollective.com/webpack/backer/95/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/96/website" target="_blank"><img src="https://opencollective.com/webpack/backer/96/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/97/website" target="_blank"><img src="https://opencollective.com/webpack/backer/97/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/98/website" target="_blank"><img src="https://opencollective.com/webpack/backer/98/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/99/website" target="_blank"><img src="https://opencollective.com/webpack/backer/99/avatar.svg"></a>
<a href="https://opencollective.com/webpack/backer/100/website" target="_blank"><img src="https://opencollective.com/webpack/backer/100/avatar.svg"></a>
2013-01-31 01:49:25 +08:00
2012-05-12 23:02:20 +08:00
## Dependencies
* [esprima](http://esprima.org/)
2013-01-31 01:49:25 +08:00
* [enhanced-resolve](https://github.com/webpack/enhanced-resolve)
2012-05-12 23:02:20 +08:00
* [uglify-js](https://github.com/mishoo/UglifyJS)
2015-11-04 23:52:50 +08:00
* [mocha](https://github.com/mochajs/mocha)
* [should](https://github.com/tj/should.js)
2013-01-31 01:49:25 +08:00
* [optimist](https://github.com/substack/node-optimist)
* [async](https://github.com/caolan/async)
* [mkdirp](https://github.com/substack/node-mkdirp)
2013-02-11 07:43:35 +08:00
* [clone](https://github.com/pvorb/node-clone)
2015-04-24 20:00:52 +08:00
2015-11-04 23:52:50 +08:00
[travis-url]: https://travis-ci.org/webpack/webpack
2016-05-17 21:32:35 +08:00
[travis-image]: https://img.shields.io/travis/webpack/webpack/master.svg
2015-04-24 20:00:52 +08:00
[appveyor-url]: https://ci.appveyor.com/project/sokra/webpack/branch/master
[appveyor-image]: https://ci.appveyor.com/api/projects/status/github/webpack/webpack?svg=true
[coveralls-url]: https://coveralls.io/r/webpack/webpack/
[coveralls-image]: https://img.shields.io/coveralls/webpack/webpack.svg
2015-11-04 23:52:50 +08:00
[npm-url]: https://www.npmjs.com/package/webpack
2015-04-24 20:00:52 +08:00
[npm-image]: https://img.shields.io/npm/v/webpack.svg
2015-11-04 23:52:50 +08:00
[downloads-image]: https://img.shields.io/npm/dm/webpack.svg
[downloads-url]: http://badge.fury.io/js/webpack
2015-04-24 20:00:52 +08:00
[david-url]: https://david-dm.org/webpack/webpack
[david-image]: https://img.shields.io/david/webpack/webpack.svg
[david-dev-url]: https://david-dm.org/webpack/webpack#info=devDependencies
[david-dev-image]: https://david-dm.org/webpack/webpack/dev-status.svg
[david-peer-url]: https://david-dm.org/webpack/webpack#info=peerDependencies
[david-peer-image]: https://david-dm.org/webpack/webpack/peer-status.svg
2015-11-06 07:32:11 +08:00
[nodei-image]: https://nodei.co/npm/webpack.png?downloads=true&downloadRank=true&stars=true
2015-11-04 23:52:50 +08:00
[nodei-url]: https://www.npmjs.com/package/webpack
2015-04-24 20:00:52 +08:00
[donate-url]: http://sokra.github.io/
[donate-image]: https://img.shields.io/badge/donate-sokra-brightgreen.svg
[gratipay-url]: https://gratipay.com/webpack/
[gratipay-image]: https://img.shields.io/gratipay/webpack.svg
2015-04-24 20:00:52 +08:00
[gitter-url]: https://gitter.im/webpack/webpack
[gitter-image]: https://img.shields.io/badge/gitter-webpack%2Fwebpack-brightgreen.svg
[badginator-image]: https://badginator.herokuapp.com/webpack/webpack.svg
[badginator-url]: https://github.com/defunctzombie/badginator