webpack 3.5.5 → 3.5.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,567 +1,567 @@
1
- <div align="center">
2
- <a href="https://github.com/webpack/webpack">
3
- <img width="200" heigth="200" src="https://webpack.js.org/assets/icon-square-big.svg">
4
- </a>
5
- <br>
6
- <br>
7
-
8
- [![npm][npm]][npm-url]
9
-
10
- [![node][node]][node-url]
11
- [![deps][deps]][deps-url]
12
- [![tests][tests]][tests-url]
13
- [![builds][builds]][builds-url]
14
- [![coverage][cover]][cover-url]
15
- [![licenses][licenses]][licenses-url]
16
-
17
- <br>
18
- <a href="https://npmjs.com/package/webpack">
19
- <img src="https://img.shields.io/npm/dm/webpack.svg">
20
- </a>
21
- <a href="https://opencollective.com/webpack#backer">
22
- <img src="https://opencollective.com/webpack/backers/badge.svg">
23
- </a>
24
- <a href="https://opencollective.com/webpack#sponsors">
25
- <img src="https://opencollective.com/webpack/sponsors/badge.svg">
26
- </a>
27
- <a href="https://gitter.im/webpack/webpack">
28
- <img src="https://badges.gitter.im/webpack/webpack.svg">
29
- </a>
30
- <h1>webpack</h1>
31
- <p>
32
- webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.
33
- <p>
34
- </div>
35
-
36
- <h2 align="center">Install</h2>
37
-
38
- Install with npm:
39
-
40
- ```bash
41
- npm install --save-dev webpack
42
- ```
43
-
44
- Install with yarn:
45
-
46
- ```bash
47
- yarn add webpack --dev
48
- ```
49
-
50
- <h2 align="center">Introduction</h2>
51
-
52
- > The README reflects webpack v2.x, webpack v1.x [documentation can be found here](https://webpack.github.io/docs/?utm_source=github&utm_medium=readme&utm_campaign=top).
53
-
54
- webpack is a bundler for modules. The main purpose is to bundle JavaScript
55
- files for usage in a browser, yet it is also capable of transforming, bundling,
56
- or packaging just about any resource or asset.
57
-
58
- **TL;DR**
59
-
60
- * Bundles [ES Modules](http://www.2ality.com/2014/09/es6-modules-final.html), [CommonJS](http://wiki.commonjs.org/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
61
- * Can create a single bundle or multiple chunks that are asynchronously loaded at runtime (to reduce initial loading time).
62
- * Dependencies are resolved during compilation, reducing the runtime size.
63
- * Loaders can preprocess files while compiling, e.g. TypeScript to JavaScript, Handlebars strings to compiled functions, images to Base64, etc.
64
- * Highly modular plugin system to do whatever else your application requires.
65
-
66
- ### Get Started
67
-
68
- Check out webpack's quick [**Get Started**](https://webpack.js.org/get-started/) guide and the [other guides](https://webpack.js.org/guides/).
69
-
70
- <h2 align="center">Concepts</h2>
71
-
72
- ### [Plugins](https://webpack.js.org/plugins/)
73
-
74
- webpack has a [rich plugin
75
- interface](https://webpack.js.org/plugins/). Most of the features
76
- within webpack itself use this plugin interface. This makes webpack very
77
- **flexible**.
78
-
79
- |Name|Status|Description|
80
- |:--:|:----:|:----------|
81
- |[common-chunks-webpack-plugin][common]|![common-npm]|Generates chunks of common modules shared between entry points and splits them into separate bundles (e.g vendor.bundle.js && app.bundle.js)|
82
- |[extract-text-webpack-plugin][extract]|![extract-npm]|Extracts Text (CSS) from your bundles into a separate file (app.bundle.css)|
83
- |[compression-webpack-plugin][compression]|![compression-npm]|Prepare compressed versions of assets to serve them with Content-Encoding|
84
- |[i18n-webpack-plugin][i18n]|![i18n-npm]|Adds i18n support to your bundles|
85
- |[html-webpack-plugin][html-plugin]|![html-plugin-npm]| Simplifies creation of HTML files (`index.html`) to serve your bundles|
86
-
87
-
88
- [common]: https://github.com/webpack/webpack/blob/master/lib/optimize/CommonsChunkPlugin.js
89
- [common-npm]: https://img.shields.io/npm/v/webpack.svg
90
- [extract]: https://github.com/webpack/extract-text-webpack-plugin
91
- [extract-npm]: https://img.shields.io/npm/v/extract-text-webpack-plugin.svg
92
- [component]: https://github.com/webpack/component-webpack-plugin
93
- [component-npm]: https://img.shields.io/npm/v/component-webpack-plugin.svg
94
- [compression]: https://github.com/webpack/compression-webpack-plugin
95
- [compression-npm]: https://img.shields.io/npm/v/compression-webpack-plugin.svg
96
- [i18n]: https://github.com/webpack/i18n-webpack-plugin
97
- [i18n-npm]: https://img.shields.io/npm/v/i18n-webpack-plugin.svg
98
- [html-plugin]: https://github.com/ampedandwired/html-webpack-plugin
99
- [html-plugin-npm]: https://img.shields.io/npm/v/html-webpack-plugin.svg
100
-
101
- ### [Loaders](https://webpack.js.org/loaders/)
102
-
103
- webpack enables use of loaders to preprocess files. This allows you to bundle
104
- **any static resource** way beyond JavaScript. You can easily [write your own
105
- loaders](https://webpack.js.org/api/loaders/) using Node.js.
106
-
107
- Loaders are activated by using `loadername!` prefixes in `require()` statements,
108
- or are automatically applied via regex from your webpack configuration.
109
-
110
- #### Files
111
-
112
- |Name|Status|Description|
113
- |:--:|:----:|:----------|
114
- |[raw-loader][raw]|![raw-npm]|Loads raw content of a file (utf-8)|
115
- |[val-loader][val]|![val-npm]|Executes code as module and consider exports as JS code|
116
- |[url-loader][url]|![url-npm]|Works like the file loader, but can return a Data Url if the file is smaller than a limit|
117
- |[file-loader][file]|![file-npm]|Emits the file into the output folder and returns the (relative) url|
118
-
119
-
120
- [raw]: https://github.com/webpack/raw-loader
121
- [raw-npm]: https://img.shields.io/npm/v/raw-loader.svg
122
- [val]: https://github.com/webpack/val-loader
123
- [val-npm]: https://img.shields.io/npm/v/val-loader.svg
124
- [url]: https://github.com/webpack/url-loader
125
- [url-npm]: https://img.shields.io/npm/v/url-loader.svg
126
- [file]: https://github.com/webpack/file-loader
127
- [file-npm]: https://img.shields.io/npm/v/file-loader.svg
128
-
129
- #### JSON
130
-
131
- |Name|Status|Description|
132
- |:--:|:----:|:----------|
133
- |<a href="https://github.com/webpack/json-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/json.svg"></a>|![json-npm]|Loads a JSON file (included by default)|
134
- |<a href="https://github.com/webpack/json5-loader"><img width="48" height="10.656" src="https://cdn.rawgit.com/json5/json5-logo/master/json5-logo.svg"></a>|![json5-npm]|Loads and transpiles a JSON 5 file|
135
- |<a href="https://github.com/awnist/cson-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/coffeescript.svg"></a>|![cson-npm]|Loads and transpiles a CSON file|
136
-
137
-
138
- [json-npm]: https://img.shields.io/npm/v/json-loader.svg
139
- [json5-npm]: https://img.shields.io/npm/v/json5-loader.svg
140
- [cson-npm]: https://img.shields.io/npm/v/cson-loader.svg
141
-
142
- #### Transpiling
143
-
144
- |Name|Status|Description|
145
- |:--:|:----:|:----------|
146
- |<a href="https://github.com/webpack/script-loader">`<script>`</a>|![script-npm]|Executes a JavaScript file once in global context (like in script tag), requires are not parsed|
147
- |<a href="https://github.com/babel/babel-loader"><img width="48" height="48" title="babel-loader" src="https://worldvectorlogo.com/logos/babel-10.svg"></a>|![babel-npm]|Loads ES2015+ code and transpiles to ES5 using <a href="https://github.com/babel/babel">Babel</a>|
148
- |<a href="https://github.com/jupl/traceur-loader"><img width="48" height="48" src="https://google.github.com/traceur-compiler/logo/tc.svg"></a>|![traceur-npm]|Loads ES2015+ code and transpiles to ES5 using [Traceur](https://github.com/google/traceur-compiler)|
149
- |<a href="https://github.com/TypeStrong/ts-loader"><img width="48" height="48" src="https://cdn.rawgit.com/Microsoft/TypeScript/master/doc/logo.svg"></a>|![type-npm]|Loads TypeScript like JavaScript|
150
- |<a href="https://github.com/webpack/coffee-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/coffeescript.svg"></a>|![coffee-npm]|Loads CoffeeScript like JavaScript|
151
-
152
-
153
- [script-npm]: https://img.shields.io/npm/v/script-loader.svg
154
- [babel-npm]: https://img.shields.io/npm/v/babel-loader.svg
155
- [traceur-npm]: https://img.shields.io/npm/v/traceur-loader.svg
156
- [coffee-npm]: https://img.shields.io/npm/v/coffee-loader.svg
157
- [type-npm]: https://img.shields.io/npm/v/ts-loader.svg
158
-
159
- #### Templating
160
-
161
- |Name|Status|Description|
162
- |:--:|:----:|:----------|
163
- |<a href="https://github.com/webpack/html-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/html5.svg"></a>|![html-npm]|Exports HTML as string, require references to static resources|
164
- |<a href="https://github.com/pugjs/pug-loader"><img width="48" height="48" src="https://cdn.rawgit.com/pugjs/pug-logo/master/SVG/pug-final-logo-_-colour-128.svg"></a>|![pug-npm]|Loads Pug templates and returns a function|
165
- |<a href="https://github.com/webpack/jade-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/jade-3.svg"></a>|![jade-npm]|Loads Jade templates and returns a function|
166
- |<a href="https://github.com/peerigon/markdown-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/markdown.svg"></a>|![md-npm]|Compiles Markdown to HTML|
167
- |<a href="https://github.com/posthtml/posthtml-loader"><img width="48" height="48" src="http://posthtml.github.io/posthtml/logo.svg"></a>|![posthtml-npm]|Loads and transforms a HTML file using [PostHTML](https://github.com/posthtml/posthtml)|
168
- |<a href="https://github.com/altano/handlebars-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/handlebars-1.svg"></a>|![hbs-npm]| Compiles Handlebars to HTML|
169
-
170
-
171
- [html-npm]: https://img.shields.io/npm/v/html-loader.svg
172
- [pug-npm]: https://img.shields.io/npm/v/pug-loader.svg
173
- [jade-npm]: https://img.shields.io/npm/v/jade-loader.svg
174
- [md-npm]: https://img.shields.io/npm/v/markdown-loader.svg
175
- [posthtml-npm]: https://img.shields.io/npm/v/posthtml-loader.svg
176
- [hbs-npm]: https://img.shields.io/npm/v/handlebars-loader.svg
177
-
178
- #### Styling
179
-
180
- |Name|Status|Description|
181
- |:--:|:----:|:----------|
182
- |<a href="https://github.com/webpack/style-loader">`<style>`|![style-npm]|Add exports of a module as style to DOM|
183
- |<a href="https://github.com/webpack/css-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/css-3.svg"></a>|![css-npm]|Loads CSS file with resolved imports and returns CSS code|
184
- |<a href="https://github.com/webpack/less-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/less-63.svg"></a>|![less-npm]|Loads and compiles a LESS file|
185
- |<a href="https://github.com/jtangelder/sass-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/sass-1.svg"></a>|![sass-npm]|Loads and compiles a SASS/SCSS file|
186
- |<a href="https://github.com/shama/stylus-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/stylus.svg"></a>|![stylus-npm]|Loads and compiles a Stylus file|
187
- |<a href="https://github.com/postcss/postcss-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/postcss.svg"></a>|![postcss-npm]|Loads and transforms a CSS/SSS file using [PostCSS](http://postcss.org)|
188
-
189
-
190
- [style-npm]: https://img.shields.io/npm/v/style-loader.svg
191
- [css-npm]: https://img.shields.io/npm/v/css-loader.svg
192
- [less-npm]: https://img.shields.io/npm/v/less-loader.svg
193
- [sass-npm]: https://img.shields.io/npm/v/sass-loader.svg
194
- [stylus-npm]: https://img.shields.io/npm/v/stylus-loader.svg
195
- [postcss-npm]: https://img.shields.io/npm/v/postcss-loader.svg
196
-
197
- #### Linting & Testing
198
-
199
- |Name|Status|Description|
200
- |:--:|:----:|:----------|
201
- |<a href="https://github.com/webpack/mocha-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/mocha.svg"></a>|![mocha-npm]|Tests with mocha (Browser/NodeJS)|
202
- |<a href="https://github.com/MoOx/eslint-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/eslint.svg"></a>|![eslint-npm]|PreLoader for linting code using ESLint|
203
- |<a href="https://github.com/webpack-contrib/jshint-loader"><img width="48" height="20.64" src="http://jshint.com/res/jshint-dark.png"></a>|![jshint-npm]|PreLoader for linting code using JSHint|
204
-
205
- [mocha-npm]: https://img.shields.io/npm/v/mocha-loader.svg
206
- [eslint-npm]: https://img.shields.io/npm/v/eslint-loader.svg
207
- [jshint-npm]: https://img.shields.io/npm/v/jshint-loader.svg
208
- [jscs-npm]: https://img.shields.io/npm/v/jscs-loader.svg
209
-
210
- #### Frameworks
211
-
212
- |Name|Status|Description|
213
- |:--:|:----:|:----------|
214
- |<a href="https://github.com/vuejs/vue-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/vue-9.svg"></a>|![vue-npm]|Loads and compiles Vue Components|
215
- |<a href="https://github.com/JonDum/polymer-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/polymer.svg"></a>|![polymer-npm]|Process HTML & CSS with preprocessor of choice and `require()` Web Components like first-class modules|
216
- |<a href="https://github.com/TheLarkInn/angular2-template-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/angular-icon-1.svg"></a>|![angular-npm]| Loads and compiles Angular 2 Components|
217
- |<a href="https://github.com/riot/tag-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/riot.svg"></a>|![riot-npm]| Riot official webpack loader|
218
-
219
-
220
-
221
- [vue-npm]: https://img.shields.io/npm/v/vue-loader.svg
222
- [polymer-npm]: https://img.shields.io/npm/v/polymer-loader.svg
223
- [angular-npm]: https://img.shields.io/npm/v/angular2-template-loader.svg
224
- [riot-npm]: https://img.shields.io/npm/v/riot-tag-loader.svg
225
-
226
- ### Performance
227
-
228
- webpack uses async I/O and has multiple caching levels. This makes webpack fast
229
- and incredibly **fast** on incremental compilations.
230
-
231
- ### Module Formats
232
-
233
- webpack supports ES2015+, CommonJS and AMD modules **out of the box**. It performs clever static
234
- analysis on the AST of your code. It even has an evaluation engine to evaluate
235
- simple expressions. This allows you to **support most existing libraries** out of the box.
236
-
237
- ### [Code Splitting](https://webpack.js.org/guides/code-splitting/)
238
-
239
- webpack allows you to split your codebase into multiple chunks. Chunks are
240
- loaded asynchronously at runtime. This reduces the initial loading time.
241
-
242
- ### [Optimizations](https://webpack.js.org/guides/production-build/)
243
-
244
- webpack can do many optimizations to **reduce the output size of your
245
- JavaScript** by deduplicating frequently used modules, minifying, and giving
246
- you full control of what is loaded initially and what is loaded at runtime
247
- through code splitting. It can also make your code chunks **cache
248
- friendly** by using hashes.
249
-
250
- <h2 align="center">Contributing</h2>
251
-
252
- **We want contributing to webpack to be fun, enjoyable, and educational for anyone, and everyone.** We have a [vibrant ecosystem](https://medium.com/webpack/contributors-guide/home) that spans beyond this single repo. We welcome you to check out any of the repositories in [our organization](http://github.com/webpack) or [webpack-contrib organization](http://github.com/webpack-contrib) which houses all of our loaders and plugins.
253
-
254
- Contributions go far beyond pull requests and commits. Although we love giving you the opportunity to put your stamp on webpack, we also are thrilled to receive a variety of other contributions including:
255
-
256
- * [Documentation](https://github.com/webpack/webpack.js.org) updates, enhancements, designs, or bugfixes
257
- * Spelling or grammar fixes
258
- * README.md corrections or redesigns
259
- * Adding unit, or functional tests
260
- * Triaging GitHub issues -- especially determining whether an issue still persists or is reproducible.
261
- * [Searching #webpack on twitter](https://twitter.com/search?q=webpack) and helping someone else who needs help
262
- * Teaching others how to contribute to one of the many webpack repo's!
263
- * [Blogging, speaking about, or creating tutorials](https://github.com/webpack-contrib/awesome-webpack) about one of webpack's many features.
264
- * Helping others in our webpack [gitter channel](https://gitter.im/webpack/webpack).
265
-
266
- If you are worried or don't know where to start, you can **always** reach out to [Sean Larkin (@TheLarkInn) on Twitter](https://twitter.com/thelarkinn) or simply submit an issue and a maintainer can help give you guidance!
267
-
268
- We have also started a series on our [Medium Publication](https://medium.com/webpack) called [The Contributor's Guide to webpack](https://medium.com/webpack/contributors-guide/home). We welcome you to read it and post any questions or responses if you still need help.
269
-
270
- _Looking to speak about webpack?_ We'd **love** to review your talk abstract/CFP! You can email it to webpack [at] opencollective [dot] com and we can give pointers or tips!!!
271
-
272
- <h3 align="center">Creating your own plugins and loaders</h3>
273
-
274
- If you create a loader or plugin, we would <3 for you to open source it, and put it on npm. We follow the `x-loader`, `x-webpack-plugin` naming convention.
275
-
276
- <h2 align="center">Support</h2>
277
-
278
- We consider webpack to be a low-level tool used not only individually but also layered beneath other awesome tools. Because of it's flexibility, webpack isn't always the _easiest_ entry-level solution, however we do believe it is the most powerful. That said, we're always looking for ways improve and simplify the tool without compromising functionality. If you have any ideas on ways to accomplish this, we're all ears!
279
-
280
- If you're just getting started, take a look at [our new docs and concepts page](https://webpack.js.org/concepts/). This has a high level overview that is great for beginners!!
281
-
282
- If you want to discuss something or just need help, [here is our Gitter room](https://gitter.im/webpack/webpack) where there are always individuals looking to help out!
283
-
284
- If you are still having difficulty, we would love for you to post
285
- a question to [StackOverflow with the webpack tag](https://stackoverflow.com/tags/webpack). It is much easier to answer questions that include your webpack.config.js and relevant files! So if you can provide them, we'd be extremely grateful (and more likely to help you find the answer!)
286
-
287
- If you are twitter savvy you can tweet #webpack with your question and someone should be able to reach out and help also.
288
-
289
- If you have discovered a 🐜 or have a feature suggestion, feel free to create an issue on Github.
290
-
291
- ### License
292
-
293
- [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack.svg?type=large)](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack?ref=badge_large)
294
-
295
- <h2 align="center">Core Team</h2>
296
-
297
- <table>
298
- <tbody>
299
- <tr>
300
- <td align="center" valign="top">
301
- <img width="150" height="150" src="https://github.com/sokra.png?s=150">
302
- <br>
303
- <a href="https://github.com/sokra">Tobias Koppers</a>
304
- <p>Core</p>
305
- <br>
306
- <p>Founder of webpack</p>
307
- </td>
308
- <td align="center" valign="top">
309
- <img width="150" height="150" src="https://github.com/jhnns.png?s=150">
310
- <br>
311
- <a href="https://github.com/jhnns">Johannes Ewald</a>
312
- <p>Loaders &amp; Plugins</p>
313
- <br>
314
- <p>Early adopter of webpack</p>
315
- </td>
316
- <td align="center" width="20%" valign="top">
317
- <img width="150" height="150" src="https://github.com/TheLarkInn.png?s=150">
318
- <br>
319
- <a href="https://github.com/TheLarkInn">Sean T. Larkin</a>
320
- <p>Public Relations</p>
321
- <br>
322
- <p>Founder of the core team</p>
323
- </td>
324
- <td align="center" valign="top">
325
- <img width="150" height="150" src="https://github.com/bebraw.png?s=150">
326
- <br>
327
- <a href="https://github.com/bebraw">Juho Vepsäläinen</a>
328
- <p>Documentation</p>
329
- <br>
330
- <p>Author</p>
331
- <a href="https://leanpub.com/survivejs-webpack">
332
- <img height="15" src="https://cloud.githubusercontent.com/assets/1365881/20286923/93e325c0-aac9-11e6-964d-cabe218c584c.png">
333
- </a>
334
- <br>
335
- </td>
336
- <td align="center" valign="top">
337
- <img width="150" height="150" src="https://github.com/spacek33z.png?s=150">
338
- <br>
339
- <a href="https://github.com/spacek33z">Kees Kluskens</a>
340
- <p>Development</p>
341
- <br>
342
- <p>Sponsor<p>
343
- <a href="https://codeyellow.nl/">
344
- <img height="15px" src="https://cloud.githubusercontent.com/assets/1365881/20286583/ad62eb04-aac7-11e6-9c14-a0fef35b9b56.png">
345
- </a>
346
- <br>
347
- </td>
348
- </tr>
349
- </tbody>
350
- </table>
351
-
352
- <h2 align="center">Sponsoring</h2>
353
-
354
- 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.
355
-
356
- This is how we use the donations:
357
-
358
- * Allow the core team to work on webpack
359
- * Thank contributors if they invested a large amount of time in contributing
360
- * Support projects in the ecosystem that are of great value for users
361
- * Support projects that are voted most (work in progress)
362
- * Infrastructure cost
363
- * Fees for money handling
364
-
365
-
366
- <h2 align="center">Premium Partners</h2>
367
-
368
- <div align="center">
369
-
370
- <a href="https://www.ag-grid.com/?utm_source=webpack&utm_medium=banner&utm_campaign=sponsorship" target="_blank"><img align="center" src="https://raw.githubusercontent.com/webpack/media/2b399d58/horiz-banner-ad-ag-grid.png">
371
- </a>
372
-
373
- </div>
374
-
375
- <h2 align="center">Other Backers and Sponsors</h2>
376
-
377
- Before we started using OpenCollective, donations were made anonymously. Now that we have made the switch, we would like to acknowledge these sponsors (and the ones who continue to donate using OpenCollective). If we've missed someone, please send us a PR, and we'll add you to this list.
378
-
379
- <div align="center">
380
-
381
- [Google Angular Team](https://angular.io/), [Architects.io](http://architects.io/),
382
- <a href="https://moonmail.io" target="_blank" title="Email Marketing Software"><img
383
- src="https://static.moonmail.io/moonmail-logo.svg" height="30" alt="MoonMail"></a>
384
- <a href="https://monei.net" target="_blank" title="Best payment gateway rates"><img
385
- src="https://static.monei.net/monei-logo.svg" height="30" alt="MONEI"></a>
386
-
387
- </div>
388
-
389
- <h2 align="center">Sponsors</h2>
390
-
391
- [Become a sponsor](https://opencollective.com/webpack#sponsor) and get your logo on our README on Github with a link to your site.
392
-
393
- <div align="center">
394
-
395
- <a href="https://opencollective.com/webpack/sponsor/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/0/avatar.svg?requireActive=false"></a>
396
- <a href="https://opencollective.com/webpack/sponsor/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/1/avatar.svg?requireActive=false"></a>
397
- <a href="https://opencollective.com/webpack/sponsor/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/2/avatar.svg?requireActive=false"></a>
398
- <a href="https://opencollective.com/webpack/sponsor/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/3/avatar.svg?requireActive=false"></a>
399
- <a href="https://opencollective.com/webpack/sponsor/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/4/avatar.svg?requireActive=false"></a>
400
- <a href="https://opencollective.com/webpack/sponsor/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/5/avatar.svg?requireActive=false"></a>
401
- <a href="https://opencollective.com/webpack/sponsor/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/6/avatar.svg?requireActive=false"></a>
402
- <a href="https://opencollective.com/webpack/sponsor/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/7/avatar.svg?requireActive=false"></a>
403
- <a href="https://opencollective.com/webpack/sponsor/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/8/avatar.svg?requireActive=false"></a>
404
- <a href="https://opencollective.com/webpack/sponsor/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/9/avatar.svg?requireActive=false"></a>
405
- <a href="https://opencollective.com/webpack/sponsor/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/10/avatar.svg?requireActive=false"></a>
406
- <a href="https://opencollective.com/webpack/sponsor/11/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/11/avatar.svg?requireActive=false"></a>
407
- <a href="https://opencollective.com/webpack/sponsor/12/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/12/avatar.svg?requireActive=false"></a>
408
- <a href="https://opencollective.com/webpack/sponsor/13/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/13/avatar.svg?requireActive=false"></a>
409
- <a href="https://opencollective.com/webpack/sponsor/14/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/14/avatar.svg?requireActive=false"></a>
410
- <a href="https://opencollective.com/webpack/sponsor/15/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/15/avatar.svg?requireActive=false"></a>
411
- <a href="https://opencollective.com/webpack/sponsor/16/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/16/avatar.svg?requireActive=false"></a>
412
- <a href="https://opencollective.com/webpack/sponsor/17/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/17/avatar.svg?requireActive=false"></a>
413
- <a href="https://opencollective.com/webpack/sponsor/18/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/18/avatar.svg?requireActive=false"></a>
414
- <a href="https://opencollective.com/webpack/sponsor/19/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/19/avatar.svg?requireActive=false"></a>
415
- <a href="https://opencollective.com/webpack/sponsor/20/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/20/avatar.svg?requireActive=false"></a>
416
- <a href="https://opencollective.com/webpack/sponsor/21/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/21/avatar.svg?requireActive=false"></a>
417
- <a href="https://opencollective.com/webpack/sponsor/22/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/22/avatar.svg?requireActive=false"></a>
418
- <a href="https://opencollective.com/webpack/sponsor/23/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/23/avatar.svg?requireActive=false"></a>
419
- <a href="https://opencollective.com/webpack/sponsor/24/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/24/avatar.svg?requireActive=false"></a>
420
- <a href="https://opencollective.com/webpack/sponsor/25/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/25/avatar.svg?requireActive=false"></a>
421
- <a href="https://opencollective.com/webpack/sponsor/26/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/26/avatar.svg?requireActive=false"></a>
422
- <a href="https://opencollective.com/webpack/sponsor/27/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/27/avatar.svg?requireActive=false"></a>
423
- <a href="https://opencollective.com/webpack/sponsor/28/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/28/avatar.svg?requireActive=false"></a>
424
- <a href="https://opencollective.com/webpack/sponsor/29/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/29/avatar.svg?requireActive=false"></a>
425
-
426
- </div>
427
-
428
- <h2 align="center">Backers</h2>
429
-
430
- [Become a backer](https://opencollective.com/webpack#backer) and get your image on our README on Github with a link to your site.
431
-
432
- <a href="https://opencollective.com/webpack/backer/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/0/avatar.svg?requireActive=false"></a>
433
- <a href="https://opencollective.com/webpack/backer/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/1/avatar.svg?requireActive=false"></a>
434
- <a href="https://opencollective.com/webpack/backer/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/2/avatar.svg?requireActive=false"></a>
435
- <a href="https://opencollective.com/webpack/backer/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/3/avatar.svg?requireActive=false"></a>
436
- <a href="https://opencollective.com/webpack/backer/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/4/avatar.svg?requireActive=false"></a>
437
- <a href="https://opencollective.com/webpack/backer/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/5/avatar.svg?requireActive=false"></a>
438
- <a href="https://opencollective.com/webpack/backer/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/6/avatar.svg?requireActive=false"></a>
439
- <a href="https://opencollective.com/webpack/backer/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/7/avatar.svg?requireActive=false"></a>
440
- <a href="https://opencollective.com/webpack/backer/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/8/avatar.svg?requireActive=false"></a>
441
- <a href="https://opencollective.com/webpack/backer/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/9/avatar.svg?requireActive=false"></a>
442
- <a href="https://opencollective.com/webpack/backer/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/10/avatar.svg?requireActive=false"></a>
443
- <a href="https://opencollective.com/webpack/backer/11/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/11/avatar.svg?requireActive=false"></a>
444
- <a href="https://opencollective.com/webpack/backer/12/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/12/avatar.svg?requireActive=false"></a>
445
- <a href="https://opencollective.com/webpack/backer/13/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/13/avatar.svg?requireActive=false"></a>
446
- <a href="https://opencollective.com/webpack/backer/14/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/14/avatar.svg?requireActive=false"></a>
447
- <a href="https://opencollective.com/webpack/backer/15/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/15/avatar.svg?requireActive=false"></a>
448
- <a href="https://opencollective.com/webpack/backer/16/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/16/avatar.svg?requireActive=false"></a>
449
- <a href="https://opencollective.com/webpack/backer/17/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/17/avatar.svg?requireActive=false"></a>
450
- <a href="https://opencollective.com/webpack/backer/18/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/18/avatar.svg?requireActive=false"></a>
451
- <a href="https://opencollective.com/webpack/backer/19/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/19/avatar.svg?requireActive=false"></a>
452
- <a href="https://opencollective.com/webpack/backer/20/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/20/avatar.svg?requireActive=false"></a>
453
- <a href="https://opencollective.com/webpack/backer/21/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/21/avatar.svg?requireActive=false"></a>
454
- <a href="https://opencollective.com/webpack/backer/22/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/22/avatar.svg?requireActive=false"></a>
455
- <a href="https://opencollective.com/webpack/backer/23/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/23/avatar.svg?requireActive=false"></a>
456
- <a href="https://opencollective.com/webpack/backer/24/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/24/avatar.svg?requireActive=false"></a>
457
- <a href="https://opencollective.com/webpack/backer/25/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/25/avatar.svg?requireActive=false"></a>
458
- <a href="https://opencollective.com/webpack/backer/26/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/26/avatar.svg?requireActive=false"></a>
459
- <a href="https://opencollective.com/webpack/backer/27/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/27/avatar.svg?requireActive=false"></a>
460
- <a href="https://opencollective.com/webpack/backer/28/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/28/avatar.svg?requireActive=false"></a>
461
- <a href="https://opencollective.com/webpack/backer/29/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/29/avatar.svg?requireActive=false"></a>
462
- <a href="https://opencollective.com/webpack/backer/30/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/30/avatar.svg?requireActive=false"></a>
463
- <a href="https://opencollective.com/webpack/backer/31/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/31/avatar.svg?requireActive=false"></a>
464
- <a href="https://opencollective.com/webpack/backer/32/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/32/avatar.svg?requireActive=false"></a>
465
- <a href="https://opencollective.com/webpack/backer/33/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/33/avatar.svg?requireActive=false"></a>
466
- <a href="https://opencollective.com/webpack/backer/34/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/34/avatar.svg?requireActive=false"></a>
467
- <a href="https://opencollective.com/webpack/backer/35/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/35/avatar.svg?requireActive=false"></a>
468
- <a href="https://opencollective.com/webpack/backer/36/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/36/avatar.svg?requireActive=false"></a>
469
- <a href="https://opencollective.com/webpack/backer/37/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/37/avatar.svg?requireActive=false"></a>
470
- <a href="https://opencollective.com/webpack/backer/38/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/38/avatar.svg?requireActive=false"></a>
471
- <a href="https://opencollective.com/webpack/backer/39/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/39/avatar.svg?requireActive=false"></a>
472
- <a href="https://opencollective.com/webpack/backer/40/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/40/avatar.svg?requireActive=false"></a>
473
- <a href="https://opencollective.com/webpack/backer/41/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/41/avatar.svg?requireActive=false"></a>
474
- <a href="https://opencollective.com/webpack/backer/42/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/42/avatar.svg?requireActive=false"></a>
475
- <a href="https://opencollective.com/webpack/backer/43/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/43/avatar.svg?requireActive=false"></a>
476
- <a href="https://opencollective.com/webpack/backer/44/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/44/avatar.svg?requireActive=false"></a>
477
- <a href="https://opencollective.com/webpack/backer/45/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/45/avatar.svg?requireActive=false"></a>
478
- <a href="https://opencollective.com/webpack/backer/46/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/46/avatar.svg?requireActive=false"></a>
479
- <a href="https://opencollective.com/webpack/backer/47/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/47/avatar.svg?requireActive=false"></a>
480
- <a href="https://opencollective.com/webpack/backer/48/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/48/avatar.svg?requireActive=false"></a>
481
- <a href="https://opencollective.com/webpack/backer/49/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/49/avatar.svg?requireActive=false"></a>
482
- <a href="https://opencollective.com/webpack/backer/50/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/50/avatar.svg?requireActive=false"></a>
483
- <a href="https://opencollective.com/webpack/backer/51/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/51/avatar.svg?requireActive=false"></a>
484
- <a href="https://opencollective.com/webpack/backer/52/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/52/avatar.svg?requireActive=false"></a>
485
- <a href="https://opencollective.com/webpack/backer/53/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/53/avatar.svg?requireActive=false"></a>
486
- <a href="https://opencollective.com/webpack/backer/54/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/54/avatar.svg?requireActive=false"></a>
487
- <a href="https://opencollective.com/webpack/backer/55/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/55/avatar.svg?requireActive=false"></a>
488
- <a href="https://opencollective.com/webpack/backer/56/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/56/avatar.svg?requireActive=false"></a>
489
- <a href="https://opencollective.com/webpack/backer/57/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/57/avatar.svg?requireActive=false"></a>
490
- <a href="https://opencollective.com/webpack/backer/58/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/58/avatar.svg?requireActive=false"></a>
491
- <a href="https://opencollective.com/webpack/backer/59/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/59/avatar.svg?requireActive=false"></a>
492
- <a href="https://opencollective.com/webpack/backer/60/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/60/avatar.svg?requireActive=false"></a>
493
- <a href="https://opencollective.com/webpack/backer/61/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/61/avatar.svg?requireActive=false"></a>
494
- <a href="https://opencollective.com/webpack/backer/62/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/62/avatar.svg?requireActive=false"></a>
495
- <a href="https://opencollective.com/webpack/backer/63/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/63/avatar.svg?requireActive=false"></a>
496
- <a href="https://opencollective.com/webpack/backer/64/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/64/avatar.svg?requireActive=false"></a>
497
- <a href="https://opencollective.com/webpack/backer/65/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/65/avatar.svg?requireActive=false"></a>
498
- <a href="https://opencollective.com/webpack/backer/66/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/66/avatar.svg?requireActive=false"></a>
499
- <a href="https://opencollective.com/webpack/backer/67/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/67/avatar.svg?requireActive=false"></a>
500
- <a href="https://opencollective.com/webpack/backer/68/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/68/avatar.svg?requireActive=false"></a>
501
- <a href="https://opencollective.com/webpack/backer/69/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/69/avatar.svg?requireActive=false"></a>
502
- <a href="https://opencollective.com/webpack/backer/70/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/70/avatar.svg?requireActive=false"></a>
503
- <a href="https://opencollective.com/webpack/backer/71/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/71/avatar.svg?requireActive=false"></a>
504
- <a href="https://opencollective.com/webpack/backer/72/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/72/avatar.svg?requireActive=false"></a>
505
- <a href="https://opencollective.com/webpack/backer/73/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/73/avatar.svg?requireActive=false"></a>
506
- <a href="https://opencollective.com/webpack/backer/74/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/74/avatar.svg?requireActive=false"></a>
507
- <a href="https://opencollective.com/webpack/backer/75/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/75/avatar.svg?requireActive=false"></a>
508
- <a href="https://opencollective.com/webpack/backer/76/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/76/avatar.svg?requireActive=false"></a>
509
- <a href="https://opencollective.com/webpack/backer/77/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/77/avatar.svg?requireActive=false"></a>
510
- <a href="https://opencollective.com/webpack/backer/78/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/78/avatar.svg?requireActive=false"></a>
511
- <a href="https://opencollective.com/webpack/backer/79/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/79/avatar.svg?requireActive=false"></a>
512
- <a href="https://opencollective.com/webpack/backer/80/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/80/avatar.svg?requireActive=false"></a>
513
- <a href="https://opencollective.com/webpack/backer/81/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/81/avatar.svg?requireActive=false"></a>
514
- <a href="https://opencollective.com/webpack/backer/82/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/82/avatar.svg?requireActive=false"></a>
515
- <a href="https://opencollective.com/webpack/backer/83/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/83/avatar.svg?requireActive=false"></a>
516
- <a href="https://opencollective.com/webpack/backer/84/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/84/avatar.svg?requireActive=false"></a>
517
- <a href="https://opencollective.com/webpack/backer/85/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/85/avatar.svg?requireActive=false"></a>
518
- <a href="https://opencollective.com/webpack/backer/86/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/86/avatar.svg?requireActive=false"></a>
519
- <a href="https://opencollective.com/webpack/backer/87/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/87/avatar.svg?requireActive=false"></a>
520
- <a href="https://opencollective.com/webpack/backer/88/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/88/avatar.svg?requireActive=false"></a>
521
- <a href="https://opencollective.com/webpack/backer/89/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/89/avatar.svg?requireActive=false"></a>
522
- <a href="https://opencollective.com/webpack/backer/90/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/90/avatar.svg?requireActive=false"></a>
523
- <a href="https://opencollective.com/webpack/backer/91/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/91/avatar.svg?requireActive=false"></a>
524
- <a href="https://opencollective.com/webpack/backer/92/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/92/avatar.svg?requireActive=false"></a>
525
- <a href="https://opencollective.com/webpack/backer/93/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/93/avatar.svg?requireActive=false"></a>
526
- <a href="https://opencollective.com/webpack/backer/94/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/94/avatar.svg?requireActive=false"></a>
527
- <a href="https://opencollective.com/webpack/backer/95/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/95/avatar.svg?requireActive=false"></a>
528
- <a href="https://opencollective.com/webpack/backer/96/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/96/avatar.svg?requireActive=false"></a>
529
- <a href="https://opencollective.com/webpack/backer/97/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/97/avatar.svg?requireActive=false"></a>
530
- <a href="https://opencollective.com/webpack/backer/98/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/98/avatar.svg?requireActive=false"></a>
531
- <a href="https://opencollective.com/webpack/backer/99/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/99/avatar.svg?requireActive=false"></a>
532
- <a href="https://opencollective.com/webpack/backer/100/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/100/avatar.svg?requireActive=false"></a>
533
-
534
- <h2 align="center">Thanks to</h2>
535
- <p align="center">(In chronological order)</p>
536
-
537
- * @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.
538
- * @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-webmake. Interestingly the [Code Splitting issue is still open](https://github.com/medikoo/modules-webmake/issues/7) (thanks also to @Phoscur for the discussion).
539
- * @substack for [browserify](http://browserify.org/), which is a similar project and source for many ideas.
540
- * @jrburke for [require.js](http://requirejs.org/), which is a similar project and source for many ideas.
541
- * @defunctzombie for the [browser-field spec](https://gist.github.com/defunctzombie/4339901), which makes modules available for node.js, browserify and webpack.
542
- * Every early webpack user, which contributed to webpack by writing issues or PRs. You influenced the direction...
543
- * @shama, @jhnns and @sokra for maintaining this project
544
- * Everyone who has written a loader for webpack. You are the ecosystem...
545
- * Everyone I forgot to mention here, but also influenced webpack.
546
-
547
-
548
- [npm]: https://img.shields.io/npm/v/webpack.svg
549
- [npm-url]: https://npmjs.com/package/webpack
550
-
551
- [node]: https://img.shields.io/node/v/webpack.svg
552
- [node-url]: https://nodejs.org
553
-
554
- [deps]: https://img.shields.io/david/webpack/webpack.svg
555
- [deps-url]: https://david-dm.org/webpack/webpack
556
-
557
- [tests]: https://img.shields.io/travis/webpack/webpack/master.svg
558
- [tests-url]: https://travis-ci.org/webpack/webpack
559
-
560
- [builds-url]: https://ci.appveyor.com/project/sokra/webpack/branch/master
561
- [builds]: https://ci.appveyor.com/api/projects/status/github/webpack/webpack?svg=true
562
-
563
- [licenses-url]: https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack?ref=badge_shield
564
- [licenses]: https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack.svg?type=shield
565
-
566
- [cover]: https://img.shields.io/coveralls/webpack/webpack.svg
567
- [cover-url]: https://coveralls.io/r/webpack/webpack/
1
+ <div align="center">
2
+ <a href="https://github.com/webpack/webpack">
3
+ <img width="200" heigth="200" src="https://webpack.js.org/assets/icon-square-big.svg">
4
+ </a>
5
+ <br>
6
+ <br>
7
+
8
+ [![npm][npm]][npm-url]
9
+
10
+ [![node][node]][node-url]
11
+ [![deps][deps]][deps-url]
12
+ [![tests][tests]][tests-url]
13
+ [![builds][builds]][builds-url]
14
+ [![coverage][cover]][cover-url]
15
+ [![licenses][licenses]][licenses-url]
16
+
17
+ <br>
18
+ <a href="https://npmjs.com/package/webpack">
19
+ <img src="https://img.shields.io/npm/dm/webpack.svg">
20
+ </a>
21
+ <a href="https://opencollective.com/webpack#backer">
22
+ <img src="https://opencollective.com/webpack/backers/badge.svg">
23
+ </a>
24
+ <a href="https://opencollective.com/webpack#sponsors">
25
+ <img src="https://opencollective.com/webpack/sponsors/badge.svg">
26
+ </a>
27
+ <a href="https://gitter.im/webpack/webpack">
28
+ <img src="https://badges.gitter.im/webpack/webpack.svg">
29
+ </a>
30
+ <h1>webpack</h1>
31
+ <p>
32
+ webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.
33
+ <p>
34
+ </div>
35
+
36
+ <h2 align="center">Install</h2>
37
+
38
+ Install with npm:
39
+
40
+ ```bash
41
+ npm install --save-dev webpack
42
+ ```
43
+
44
+ Install with yarn:
45
+
46
+ ```bash
47
+ yarn add webpack --dev
48
+ ```
49
+
50
+ <h2 align="center">Introduction</h2>
51
+
52
+ > This README reflects Webpack v2.x and v3.x. The Webpack v1.x [documentation can be found here](https://webpack.github.io/docs/?utm_source=github&utm_medium=readme&utm_campaign=top).
53
+
54
+ webpack is a bundler for modules. The main purpose is to bundle JavaScript
55
+ files for usage in a browser, yet it is also capable of transforming, bundling,
56
+ or packaging just about any resource or asset.
57
+
58
+ **TL;DR**
59
+
60
+ * Bundles [ES Modules](http://www.2ality.com/2014/09/es6-modules-final.html), [CommonJS](http://wiki.commonjs.org/) and [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) modules (even combined).
61
+ * Can create a single bundle or multiple chunks that are asynchronously loaded at runtime (to reduce initial loading time).
62
+ * Dependencies are resolved during compilation, reducing the runtime size.
63
+ * Loaders can preprocess files while compiling, e.g. TypeScript to JavaScript, Handlebars strings to compiled functions, images to Base64, etc.
64
+ * Highly modular plugin system to do whatever else your application requires.
65
+
66
+ ### Get Started
67
+
68
+ Check out webpack's quick [**Get Started**](https://webpack.js.org/get-started/) guide and the [other guides](https://webpack.js.org/guides/).
69
+
70
+ <h2 align="center">Concepts</h2>
71
+
72
+ ### [Plugins](https://webpack.js.org/plugins/)
73
+
74
+ webpack has a [rich plugin
75
+ interface](https://webpack.js.org/plugins/). Most of the features
76
+ within webpack itself use this plugin interface. This makes webpack very
77
+ **flexible**.
78
+
79
+ |Name|Status|Description|
80
+ |:--:|:----:|:----------|
81
+ |[common-chunks-webpack-plugin][common]|![common-npm]|Generates chunks of common modules shared between entry points and splits them into separate bundles (e.g vendor.bundle.js && app.bundle.js)|
82
+ |[extract-text-webpack-plugin][extract]|![extract-npm]|Extracts Text (CSS) from your bundles into a separate file (app.bundle.css)|
83
+ |[compression-webpack-plugin][compression]|![compression-npm]|Prepare compressed versions of assets to serve them with Content-Encoding|
84
+ |[i18n-webpack-plugin][i18n]|![i18n-npm]|Adds i18n support to your bundles|
85
+ |[html-webpack-plugin][html-plugin]|![html-plugin-npm]| Simplifies creation of HTML files (`index.html`) to serve your bundles|
86
+
87
+
88
+ [common]: https://github.com/webpack/webpack/blob/master/lib/optimize/CommonsChunkPlugin.js
89
+ [common-npm]: https://img.shields.io/npm/v/webpack.svg
90
+ [extract]: https://github.com/webpack/extract-text-webpack-plugin
91
+ [extract-npm]: https://img.shields.io/npm/v/extract-text-webpack-plugin.svg
92
+ [component]: https://github.com/webpack/component-webpack-plugin
93
+ [component-npm]: https://img.shields.io/npm/v/component-webpack-plugin.svg
94
+ [compression]: https://github.com/webpack/compression-webpack-plugin
95
+ [compression-npm]: https://img.shields.io/npm/v/compression-webpack-plugin.svg
96
+ [i18n]: https://github.com/webpack/i18n-webpack-plugin
97
+ [i18n-npm]: https://img.shields.io/npm/v/i18n-webpack-plugin.svg
98
+ [html-plugin]: https://github.com/ampedandwired/html-webpack-plugin
99
+ [html-plugin-npm]: https://img.shields.io/npm/v/html-webpack-plugin.svg
100
+
101
+ ### [Loaders](https://webpack.js.org/loaders/)
102
+
103
+ webpack enables use of loaders to preprocess files. This allows you to bundle
104
+ **any static resource** way beyond JavaScript. You can easily [write your own
105
+ loaders](https://webpack.js.org/api/loaders/) using Node.js.
106
+
107
+ Loaders are activated by using `loadername!` prefixes in `require()` statements,
108
+ or are automatically applied via regex from your webpack configuration.
109
+
110
+ #### Files
111
+
112
+ |Name|Status|Description|
113
+ |:--:|:----:|:----------|
114
+ |[raw-loader][raw]|![raw-npm]|Loads raw content of a file (utf-8)|
115
+ |[val-loader][val]|![val-npm]|Executes code as module and consider exports as JS code|
116
+ |[url-loader][url]|![url-npm]|Works like the file loader, but can return a Data Url if the file is smaller than a limit|
117
+ |[file-loader][file]|![file-npm]|Emits the file into the output folder and returns the (relative) url|
118
+
119
+
120
+ [raw]: https://github.com/webpack/raw-loader
121
+ [raw-npm]: https://img.shields.io/npm/v/raw-loader.svg
122
+ [val]: https://github.com/webpack/val-loader
123
+ [val-npm]: https://img.shields.io/npm/v/val-loader.svg
124
+ [url]: https://github.com/webpack/url-loader
125
+ [url-npm]: https://img.shields.io/npm/v/url-loader.svg
126
+ [file]: https://github.com/webpack/file-loader
127
+ [file-npm]: https://img.shields.io/npm/v/file-loader.svg
128
+
129
+ #### JSON
130
+
131
+ |Name|Status|Description|
132
+ |:--:|:----:|:----------|
133
+ |<a href="https://github.com/webpack/json-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/json.svg"></a>|![json-npm]|Loads a JSON file (included by default)|
134
+ |<a href="https://github.com/webpack/json5-loader"><img width="48" height="10.656" src="https://cdn.rawgit.com/json5/json5-logo/master/json5-logo.svg"></a>|![json5-npm]|Loads and transpiles a JSON 5 file|
135
+ |<a href="https://github.com/awnist/cson-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/coffeescript.svg"></a>|![cson-npm]|Loads and transpiles a CSON file|
136
+
137
+
138
+ [json-npm]: https://img.shields.io/npm/v/json-loader.svg
139
+ [json5-npm]: https://img.shields.io/npm/v/json5-loader.svg
140
+ [cson-npm]: https://img.shields.io/npm/v/cson-loader.svg
141
+
142
+ #### Transpiling
143
+
144
+ |Name|Status|Description|
145
+ |:--:|:----:|:----------|
146
+ |<a href="https://github.com/webpack/script-loader">`<script>`</a>|![script-npm]|Executes a JavaScript file once in global context (like in script tag), requires are not parsed|
147
+ |<a href="https://github.com/babel/babel-loader"><img width="48" height="48" title="babel-loader" src="https://worldvectorlogo.com/logos/babel-10.svg"></a>|![babel-npm]|Loads ES2015+ code and transpiles to ES5 using <a href="https://github.com/babel/babel">Babel</a>|
148
+ |<a href="https://github.com/jupl/traceur-loader"><img width="48" height="48" src="https://google.github.com/traceur-compiler/logo/tc.svg"></a>|![traceur-npm]|Loads ES2015+ code and transpiles to ES5 using [Traceur](https://github.com/google/traceur-compiler)|
149
+ |<a href="https://github.com/TypeStrong/ts-loader"><img width="48" height="48" src="https://cdn.rawgit.com/Microsoft/TypeScript/master/doc/logo.svg"></a>|![type-npm]|Loads TypeScript like JavaScript|
150
+ |<a href="https://github.com/webpack/coffee-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/coffeescript.svg"></a>|![coffee-npm]|Loads CoffeeScript like JavaScript|
151
+
152
+
153
+ [script-npm]: https://img.shields.io/npm/v/script-loader.svg
154
+ [babel-npm]: https://img.shields.io/npm/v/babel-loader.svg
155
+ [traceur-npm]: https://img.shields.io/npm/v/traceur-loader.svg
156
+ [coffee-npm]: https://img.shields.io/npm/v/coffee-loader.svg
157
+ [type-npm]: https://img.shields.io/npm/v/ts-loader.svg
158
+
159
+ #### Templating
160
+
161
+ |Name|Status|Description|
162
+ |:--:|:----:|:----------|
163
+ |<a href="https://github.com/webpack/html-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/html5.svg"></a>|![html-npm]|Exports HTML as string, require references to static resources|
164
+ |<a href="https://github.com/pugjs/pug-loader"><img width="48" height="48" src="https://cdn.rawgit.com/pugjs/pug-logo/master/SVG/pug-final-logo-_-colour-128.svg"></a>|![pug-npm]|Loads Pug templates and returns a function|
165
+ |<a href="https://github.com/webpack/jade-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/jade-3.svg"></a>|![jade-npm]|Loads Jade templates and returns a function|
166
+ |<a href="https://github.com/peerigon/markdown-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/markdown.svg"></a>|![md-npm]|Compiles Markdown to HTML|
167
+ |<a href="https://github.com/posthtml/posthtml-loader"><img width="48" height="48" src="http://posthtml.github.io/posthtml/logo.svg"></a>|![posthtml-npm]|Loads and transforms a HTML file using [PostHTML](https://github.com/posthtml/posthtml)|
168
+ |<a href="https://github.com/altano/handlebars-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/handlebars-1.svg"></a>|![hbs-npm]| Compiles Handlebars to HTML|
169
+
170
+
171
+ [html-npm]: https://img.shields.io/npm/v/html-loader.svg
172
+ [pug-npm]: https://img.shields.io/npm/v/pug-loader.svg
173
+ [jade-npm]: https://img.shields.io/npm/v/jade-loader.svg
174
+ [md-npm]: https://img.shields.io/npm/v/markdown-loader.svg
175
+ [posthtml-npm]: https://img.shields.io/npm/v/posthtml-loader.svg
176
+ [hbs-npm]: https://img.shields.io/npm/v/handlebars-loader.svg
177
+
178
+ #### Styling
179
+
180
+ |Name|Status|Description|
181
+ |:--:|:----:|:----------|
182
+ |<a href="https://github.com/webpack/style-loader">`<style>`|![style-npm]|Add exports of a module as style to DOM|
183
+ |<a href="https://github.com/webpack/css-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/css-3.svg"></a>|![css-npm]|Loads CSS file with resolved imports and returns CSS code|
184
+ |<a href="https://github.com/webpack/less-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/less-63.svg"></a>|![less-npm]|Loads and compiles a LESS file|
185
+ |<a href="https://github.com/jtangelder/sass-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/sass-1.svg"></a>|![sass-npm]|Loads and compiles a SASS/SCSS file|
186
+ |<a href="https://github.com/shama/stylus-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/stylus.svg"></a>|![stylus-npm]|Loads and compiles a Stylus file|
187
+ |<a href="https://github.com/postcss/postcss-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/postcss.svg"></a>|![postcss-npm]|Loads and transforms a CSS/SSS file using [PostCSS](http://postcss.org)|
188
+
189
+
190
+ [style-npm]: https://img.shields.io/npm/v/style-loader.svg
191
+ [css-npm]: https://img.shields.io/npm/v/css-loader.svg
192
+ [less-npm]: https://img.shields.io/npm/v/less-loader.svg
193
+ [sass-npm]: https://img.shields.io/npm/v/sass-loader.svg
194
+ [stylus-npm]: https://img.shields.io/npm/v/stylus-loader.svg
195
+ [postcss-npm]: https://img.shields.io/npm/v/postcss-loader.svg
196
+
197
+ #### Linting & Testing
198
+
199
+ |Name|Status|Description|
200
+ |:--:|:----:|:----------|
201
+ |<a href="https://github.com/webpack/mocha-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/mocha.svg"></a>|![mocha-npm]|Tests with mocha (Browser/NodeJS)|
202
+ |<a href="https://github.com/MoOx/eslint-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/eslint.svg"></a>|![eslint-npm]|PreLoader for linting code using ESLint|
203
+ |<a href="https://github.com/webpack-contrib/jshint-loader"><img width="48" height="20.64" src="http://jshint.com/res/jshint-dark.png"></a>|![jshint-npm]|PreLoader for linting code using JSHint|
204
+
205
+ [mocha-npm]: https://img.shields.io/npm/v/mocha-loader.svg
206
+ [eslint-npm]: https://img.shields.io/npm/v/eslint-loader.svg
207
+ [jshint-npm]: https://img.shields.io/npm/v/jshint-loader.svg
208
+ [jscs-npm]: https://img.shields.io/npm/v/jscs-loader.svg
209
+
210
+ #### Frameworks
211
+
212
+ |Name|Status|Description|
213
+ |:--:|:----:|:----------|
214
+ |<a href="https://github.com/vuejs/vue-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/vue-9.svg"></a>|![vue-npm]|Loads and compiles Vue Components|
215
+ |<a href="https://github.com/JonDum/polymer-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/polymer.svg"></a>|![polymer-npm]|Process HTML & CSS with preprocessor of choice and `require()` Web Components like first-class modules|
216
+ |<a href="https://github.com/TheLarkInn/angular2-template-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/angular-icon-1.svg"></a>|![angular-npm]| Loads and compiles Angular 2 Components|
217
+ |<a href="https://github.com/riot/tag-loader"><img width="48" height="48" src="https://worldvectorlogo.com/logos/riot.svg"></a>|![riot-npm]| Riot official webpack loader|
218
+
219
+
220
+
221
+ [vue-npm]: https://img.shields.io/npm/v/vue-loader.svg
222
+ [polymer-npm]: https://img.shields.io/npm/v/polymer-loader.svg
223
+ [angular-npm]: https://img.shields.io/npm/v/angular2-template-loader.svg
224
+ [riot-npm]: https://img.shields.io/npm/v/riot-tag-loader.svg
225
+
226
+ ### Performance
227
+
228
+ webpack uses async I/O and has multiple caching levels. This makes webpack fast
229
+ and incredibly **fast** on incremental compilations.
230
+
231
+ ### Module Formats
232
+
233
+ webpack supports ES2015+, CommonJS and AMD modules **out of the box**. It performs clever static
234
+ analysis on the AST of your code. It even has an evaluation engine to evaluate
235
+ simple expressions. This allows you to **support most existing libraries** out of the box.
236
+
237
+ ### [Code Splitting](https://webpack.js.org/guides/code-splitting/)
238
+
239
+ webpack allows you to split your codebase into multiple chunks. Chunks are
240
+ loaded asynchronously at runtime. This reduces the initial loading time.
241
+
242
+ ### [Optimizations](https://webpack.js.org/guides/production-build/)
243
+
244
+ webpack can do many optimizations to **reduce the output size of your
245
+ JavaScript** by deduplicating frequently used modules, minifying, and giving
246
+ you full control of what is loaded initially and what is loaded at runtime
247
+ through code splitting. It can also make your code chunks **cache
248
+ friendly** by using hashes.
249
+
250
+ <h2 align="center">Contributing</h2>
251
+
252
+ **We want contributing to webpack to be fun, enjoyable, and educational for anyone, and everyone.** We have a [vibrant ecosystem](https://medium.com/webpack/contributors-guide/home) that spans beyond this single repo. We welcome you to check out any of the repositories in [our organization](http://github.com/webpack) or [webpack-contrib organization](http://github.com/webpack-contrib) which houses all of our loaders and plugins.
253
+
254
+ Contributions go far beyond pull requests and commits. Although we love giving you the opportunity to put your stamp on webpack, we also are thrilled to receive a variety of other contributions including:
255
+
256
+ * [Documentation](https://github.com/webpack/webpack.js.org) updates, enhancements, designs, or bugfixes
257
+ * Spelling or grammar fixes
258
+ * README.md corrections or redesigns
259
+ * Adding unit, or functional tests
260
+ * Triaging GitHub issues -- especially determining whether an issue still persists or is reproducible.
261
+ * [Searching #webpack on twitter](https://twitter.com/search?q=webpack) and helping someone else who needs help
262
+ * Teaching others how to contribute to one of the many webpack repo's!
263
+ * [Blogging, speaking about, or creating tutorials](https://github.com/webpack-contrib/awesome-webpack) about one of webpack's many features.
264
+ * Helping others in our webpack [gitter channel](https://gitter.im/webpack/webpack).
265
+
266
+ If you are worried or don't know where to start, you can **always** reach out to [Sean Larkin (@TheLarkInn) on Twitter](https://twitter.com/thelarkinn) or simply submit an issue and a maintainer can help give you guidance!
267
+
268
+ We have also started a series on our [Medium Publication](https://medium.com/webpack) called [The Contributor's Guide to webpack](https://medium.com/webpack/contributors-guide/home). We welcome you to read it and post any questions or responses if you still need help.
269
+
270
+ _Looking to speak about webpack?_ We'd **love** to review your talk abstract/CFP! You can email it to webpack [at] opencollective [dot] com and we can give pointers or tips!!!
271
+
272
+ <h3 align="center">Creating your own plugins and loaders</h3>
273
+
274
+ If you create a loader or plugin, we would <3 for you to open source it, and put it on npm. We follow the `x-loader`, `x-webpack-plugin` naming convention.
275
+
276
+ <h2 align="center">Support</h2>
277
+
278
+ We consider webpack to be a low-level tool used not only individually but also layered beneath other awesome tools. Because of it's flexibility, webpack isn't always the _easiest_ entry-level solution, however we do believe it is the most powerful. That said, we're always looking for ways improve and simplify the tool without compromising functionality. If you have any ideas on ways to accomplish this, we're all ears!
279
+
280
+ If you're just getting started, take a look at [our new docs and concepts page](https://webpack.js.org/concepts/). This has a high level overview that is great for beginners!!
281
+
282
+ If you want to discuss something or just need help, [here is our Gitter room](https://gitter.im/webpack/webpack) where there are always individuals looking to help out!
283
+
284
+ If you are still having difficulty, we would love for you to post
285
+ a question to [StackOverflow with the webpack tag](https://stackoverflow.com/tags/webpack). It is much easier to answer questions that include your webpack.config.js and relevant files! So if you can provide them, we'd be extremely grateful (and more likely to help you find the answer!)
286
+
287
+ If you are twitter savvy you can tweet #webpack with your question and someone should be able to reach out and help also.
288
+
289
+ If you have discovered a 🐜 or have a feature suggestion, feel free to create an issue on Github.
290
+
291
+ ### License
292
+
293
+ [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack.svg?type=large)](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack?ref=badge_large)
294
+
295
+ <h2 align="center">Core Team</h2>
296
+
297
+ <table>
298
+ <tbody>
299
+ <tr>
300
+ <td align="center" valign="top">
301
+ <img width="150" height="150" src="https://github.com/sokra.png?s=150">
302
+ <br>
303
+ <a href="https://github.com/sokra">Tobias Koppers</a>
304
+ <p>Core</p>
305
+ <br>
306
+ <p>Founder of webpack</p>
307
+ </td>
308
+ <td align="center" valign="top">
309
+ <img width="150" height="150" src="https://github.com/jhnns.png?s=150">
310
+ <br>
311
+ <a href="https://github.com/jhnns">Johannes Ewald</a>
312
+ <p>Loaders &amp; Plugins</p>
313
+ <br>
314
+ <p>Early adopter of webpack</p>
315
+ </td>
316
+ <td align="center" width="20%" valign="top">
317
+ <img width="150" height="150" src="https://github.com/TheLarkInn.png?s=150">
318
+ <br>
319
+ <a href="https://github.com/TheLarkInn">Sean T. Larkin</a>
320
+ <p>Public Relations</p>
321
+ <br>
322
+ <p>Founder of the core team</p>
323
+ </td>
324
+ <td align="center" valign="top">
325
+ <img width="150" height="150" src="https://github.com/bebraw.png?s=150">
326
+ <br>
327
+ <a href="https://github.com/bebraw">Juho Vepsäläinen</a>
328
+ <p>Documentation</p>
329
+ <br>
330
+ <p>Author</p>
331
+ <a href="https://leanpub.com/survivejs-webpack">
332
+ <img height="15" src="https://cloud.githubusercontent.com/assets/1365881/20286923/93e325c0-aac9-11e6-964d-cabe218c584c.png">
333
+ </a>
334
+ <br>
335
+ </td>
336
+ <td align="center" valign="top">
337
+ <img width="150" height="150" src="https://github.com/spacek33z.png?s=150">
338
+ <br>
339
+ <a href="https://github.com/spacek33z">Kees Kluskens</a>
340
+ <p>Development</p>
341
+ <br>
342
+ <p>Sponsor<p>
343
+ <a href="https://codeyellow.nl/">
344
+ <img height="15px" src="https://cloud.githubusercontent.com/assets/1365881/20286583/ad62eb04-aac7-11e6-9c14-a0fef35b9b56.png">
345
+ </a>
346
+ <br>
347
+ </td>
348
+ </tr>
349
+ </tbody>
350
+ </table>
351
+
352
+ <h2 align="center">Sponsoring</h2>
353
+
354
+ 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.
355
+
356
+ This is how we use the donations:
357
+
358
+ * Allow the core team to work on webpack
359
+ * Thank contributors if they invested a large amount of time in contributing
360
+ * Support projects in the ecosystem that are of great value for users
361
+ * Support projects that are voted most (work in progress)
362
+ * Infrastructure cost
363
+ * Fees for money handling
364
+
365
+
366
+ <h2 align="center">Premium Partners</h2>
367
+
368
+ <div align="center">
369
+
370
+ <a href="https://www.ag-grid.com/?utm_source=webpack&utm_medium=banner&utm_campaign=sponsorship" target="_blank"><img align="center" src="https://raw.githubusercontent.com/webpack/media/2b399d58/horiz-banner-ad-ag-grid.png">
371
+ </a>
372
+
373
+ </div>
374
+
375
+ <h2 align="center">Other Backers and Sponsors</h2>
376
+
377
+ Before we started using OpenCollective, donations were made anonymously. Now that we have made the switch, we would like to acknowledge these sponsors (and the ones who continue to donate using OpenCollective). If we've missed someone, please send us a PR, and we'll add you to this list.
378
+
379
+ <div align="center">
380
+
381
+ [Google Angular Team](https://angular.io/), [Architects.io](http://architects.io/),
382
+ <a href="https://moonmail.io" target="_blank" title="Email Marketing Software"><img
383
+ src="https://static.moonmail.io/moonmail-logo.svg" height="30" alt="MoonMail"></a>
384
+ <a href="https://monei.net" target="_blank" title="Best payment gateway rates"><img
385
+ src="https://static.monei.net/monei-logo.svg" height="30" alt="MONEI"></a>
386
+
387
+ </div>
388
+
389
+ <h2 align="center">Sponsors</h2>
390
+
391
+ [Become a sponsor](https://opencollective.com/webpack#sponsor) and get your logo on our README on Github with a link to your site.
392
+
393
+ <div align="center">
394
+
395
+ <a href="https://opencollective.com/webpack/sponsor/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/0/avatar.svg?requireActive=false"></a>
396
+ <a href="https://opencollective.com/webpack/sponsor/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/1/avatar.svg?requireActive=false"></a>
397
+ <a href="https://opencollective.com/webpack/sponsor/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/2/avatar.svg?requireActive=false"></a>
398
+ <a href="https://opencollective.com/webpack/sponsor/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/3/avatar.svg?requireActive=false"></a>
399
+ <a href="https://opencollective.com/webpack/sponsor/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/4/avatar.svg?requireActive=false"></a>
400
+ <a href="https://opencollective.com/webpack/sponsor/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/5/avatar.svg?requireActive=false"></a>
401
+ <a href="https://opencollective.com/webpack/sponsor/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/6/avatar.svg?requireActive=false"></a>
402
+ <a href="https://opencollective.com/webpack/sponsor/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/7/avatar.svg?requireActive=false"></a>
403
+ <a href="https://opencollective.com/webpack/sponsor/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/8/avatar.svg?requireActive=false"></a>
404
+ <a href="https://opencollective.com/webpack/sponsor/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/9/avatar.svg?requireActive=false"></a>
405
+ <a href="https://opencollective.com/webpack/sponsor/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/10/avatar.svg?requireActive=false"></a>
406
+ <a href="https://opencollective.com/webpack/sponsor/11/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/11/avatar.svg?requireActive=false"></a>
407
+ <a href="https://opencollective.com/webpack/sponsor/12/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/12/avatar.svg?requireActive=false"></a>
408
+ <a href="https://opencollective.com/webpack/sponsor/13/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/13/avatar.svg?requireActive=false"></a>
409
+ <a href="https://opencollective.com/webpack/sponsor/14/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/14/avatar.svg?requireActive=false"></a>
410
+ <a href="https://opencollective.com/webpack/sponsor/15/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/15/avatar.svg?requireActive=false"></a>
411
+ <a href="https://opencollective.com/webpack/sponsor/16/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/16/avatar.svg?requireActive=false"></a>
412
+ <a href="https://opencollective.com/webpack/sponsor/17/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/17/avatar.svg?requireActive=false"></a>
413
+ <a href="https://opencollective.com/webpack/sponsor/18/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/18/avatar.svg?requireActive=false"></a>
414
+ <a href="https://opencollective.com/webpack/sponsor/19/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/19/avatar.svg?requireActive=false"></a>
415
+ <a href="https://opencollective.com/webpack/sponsor/20/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/20/avatar.svg?requireActive=false"></a>
416
+ <a href="https://opencollective.com/webpack/sponsor/21/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/21/avatar.svg?requireActive=false"></a>
417
+ <a href="https://opencollective.com/webpack/sponsor/22/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/22/avatar.svg?requireActive=false"></a>
418
+ <a href="https://opencollective.com/webpack/sponsor/23/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/23/avatar.svg?requireActive=false"></a>
419
+ <a href="https://opencollective.com/webpack/sponsor/24/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/24/avatar.svg?requireActive=false"></a>
420
+ <a href="https://opencollective.com/webpack/sponsor/25/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/25/avatar.svg?requireActive=false"></a>
421
+ <a href="https://opencollective.com/webpack/sponsor/26/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/26/avatar.svg?requireActive=false"></a>
422
+ <a href="https://opencollective.com/webpack/sponsor/27/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/27/avatar.svg?requireActive=false"></a>
423
+ <a href="https://opencollective.com/webpack/sponsor/28/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/28/avatar.svg?requireActive=false"></a>
424
+ <a href="https://opencollective.com/webpack/sponsor/29/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/sponsor/29/avatar.svg?requireActive=false"></a>
425
+
426
+ </div>
427
+
428
+ <h2 align="center">Backers</h2>
429
+
430
+ [Become a backer](https://opencollective.com/webpack#backer) and get your image on our README on Github with a link to your site.
431
+
432
+ <a href="https://opencollective.com/webpack/backer/0/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/0/avatar.svg?requireActive=false"></a>
433
+ <a href="https://opencollective.com/webpack/backer/1/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/1/avatar.svg?requireActive=false"></a>
434
+ <a href="https://opencollective.com/webpack/backer/2/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/2/avatar.svg?requireActive=false"></a>
435
+ <a href="https://opencollective.com/webpack/backer/3/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/3/avatar.svg?requireActive=false"></a>
436
+ <a href="https://opencollective.com/webpack/backer/4/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/4/avatar.svg?requireActive=false"></a>
437
+ <a href="https://opencollective.com/webpack/backer/5/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/5/avatar.svg?requireActive=false"></a>
438
+ <a href="https://opencollective.com/webpack/backer/6/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/6/avatar.svg?requireActive=false"></a>
439
+ <a href="https://opencollective.com/webpack/backer/7/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/7/avatar.svg?requireActive=false"></a>
440
+ <a href="https://opencollective.com/webpack/backer/8/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/8/avatar.svg?requireActive=false"></a>
441
+ <a href="https://opencollective.com/webpack/backer/9/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/9/avatar.svg?requireActive=false"></a>
442
+ <a href="https://opencollective.com/webpack/backer/10/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/10/avatar.svg?requireActive=false"></a>
443
+ <a href="https://opencollective.com/webpack/backer/11/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/11/avatar.svg?requireActive=false"></a>
444
+ <a href="https://opencollective.com/webpack/backer/12/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/12/avatar.svg?requireActive=false"></a>
445
+ <a href="https://opencollective.com/webpack/backer/13/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/13/avatar.svg?requireActive=false"></a>
446
+ <a href="https://opencollective.com/webpack/backer/14/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/14/avatar.svg?requireActive=false"></a>
447
+ <a href="https://opencollective.com/webpack/backer/15/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/15/avatar.svg?requireActive=false"></a>
448
+ <a href="https://opencollective.com/webpack/backer/16/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/16/avatar.svg?requireActive=false"></a>
449
+ <a href="https://opencollective.com/webpack/backer/17/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/17/avatar.svg?requireActive=false"></a>
450
+ <a href="https://opencollective.com/webpack/backer/18/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/18/avatar.svg?requireActive=false"></a>
451
+ <a href="https://opencollective.com/webpack/backer/19/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/19/avatar.svg?requireActive=false"></a>
452
+ <a href="https://opencollective.com/webpack/backer/20/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/20/avatar.svg?requireActive=false"></a>
453
+ <a href="https://opencollective.com/webpack/backer/21/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/21/avatar.svg?requireActive=false"></a>
454
+ <a href="https://opencollective.com/webpack/backer/22/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/22/avatar.svg?requireActive=false"></a>
455
+ <a href="https://opencollective.com/webpack/backer/23/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/23/avatar.svg?requireActive=false"></a>
456
+ <a href="https://opencollective.com/webpack/backer/24/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/24/avatar.svg?requireActive=false"></a>
457
+ <a href="https://opencollective.com/webpack/backer/25/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/25/avatar.svg?requireActive=false"></a>
458
+ <a href="https://opencollective.com/webpack/backer/26/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/26/avatar.svg?requireActive=false"></a>
459
+ <a href="https://opencollective.com/webpack/backer/27/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/27/avatar.svg?requireActive=false"></a>
460
+ <a href="https://opencollective.com/webpack/backer/28/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/28/avatar.svg?requireActive=false"></a>
461
+ <a href="https://opencollective.com/webpack/backer/29/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/29/avatar.svg?requireActive=false"></a>
462
+ <a href="https://opencollective.com/webpack/backer/30/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/30/avatar.svg?requireActive=false"></a>
463
+ <a href="https://opencollective.com/webpack/backer/31/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/31/avatar.svg?requireActive=false"></a>
464
+ <a href="https://opencollective.com/webpack/backer/32/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/32/avatar.svg?requireActive=false"></a>
465
+ <a href="https://opencollective.com/webpack/backer/33/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/33/avatar.svg?requireActive=false"></a>
466
+ <a href="https://opencollective.com/webpack/backer/34/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/34/avatar.svg?requireActive=false"></a>
467
+ <a href="https://opencollective.com/webpack/backer/35/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/35/avatar.svg?requireActive=false"></a>
468
+ <a href="https://opencollective.com/webpack/backer/36/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/36/avatar.svg?requireActive=false"></a>
469
+ <a href="https://opencollective.com/webpack/backer/37/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/37/avatar.svg?requireActive=false"></a>
470
+ <a href="https://opencollective.com/webpack/backer/38/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/38/avatar.svg?requireActive=false"></a>
471
+ <a href="https://opencollective.com/webpack/backer/39/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/39/avatar.svg?requireActive=false"></a>
472
+ <a href="https://opencollective.com/webpack/backer/40/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/40/avatar.svg?requireActive=false"></a>
473
+ <a href="https://opencollective.com/webpack/backer/41/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/41/avatar.svg?requireActive=false"></a>
474
+ <a href="https://opencollective.com/webpack/backer/42/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/42/avatar.svg?requireActive=false"></a>
475
+ <a href="https://opencollective.com/webpack/backer/43/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/43/avatar.svg?requireActive=false"></a>
476
+ <a href="https://opencollective.com/webpack/backer/44/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/44/avatar.svg?requireActive=false"></a>
477
+ <a href="https://opencollective.com/webpack/backer/45/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/45/avatar.svg?requireActive=false"></a>
478
+ <a href="https://opencollective.com/webpack/backer/46/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/46/avatar.svg?requireActive=false"></a>
479
+ <a href="https://opencollective.com/webpack/backer/47/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/47/avatar.svg?requireActive=false"></a>
480
+ <a href="https://opencollective.com/webpack/backer/48/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/48/avatar.svg?requireActive=false"></a>
481
+ <a href="https://opencollective.com/webpack/backer/49/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/49/avatar.svg?requireActive=false"></a>
482
+ <a href="https://opencollective.com/webpack/backer/50/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/50/avatar.svg?requireActive=false"></a>
483
+ <a href="https://opencollective.com/webpack/backer/51/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/51/avatar.svg?requireActive=false"></a>
484
+ <a href="https://opencollective.com/webpack/backer/52/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/52/avatar.svg?requireActive=false"></a>
485
+ <a href="https://opencollective.com/webpack/backer/53/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/53/avatar.svg?requireActive=false"></a>
486
+ <a href="https://opencollective.com/webpack/backer/54/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/54/avatar.svg?requireActive=false"></a>
487
+ <a href="https://opencollective.com/webpack/backer/55/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/55/avatar.svg?requireActive=false"></a>
488
+ <a href="https://opencollective.com/webpack/backer/56/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/56/avatar.svg?requireActive=false"></a>
489
+ <a href="https://opencollective.com/webpack/backer/57/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/57/avatar.svg?requireActive=false"></a>
490
+ <a href="https://opencollective.com/webpack/backer/58/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/58/avatar.svg?requireActive=false"></a>
491
+ <a href="https://opencollective.com/webpack/backer/59/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/59/avatar.svg?requireActive=false"></a>
492
+ <a href="https://opencollective.com/webpack/backer/60/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/60/avatar.svg?requireActive=false"></a>
493
+ <a href="https://opencollective.com/webpack/backer/61/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/61/avatar.svg?requireActive=false"></a>
494
+ <a href="https://opencollective.com/webpack/backer/62/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/62/avatar.svg?requireActive=false"></a>
495
+ <a href="https://opencollective.com/webpack/backer/63/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/63/avatar.svg?requireActive=false"></a>
496
+ <a href="https://opencollective.com/webpack/backer/64/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/64/avatar.svg?requireActive=false"></a>
497
+ <a href="https://opencollective.com/webpack/backer/65/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/65/avatar.svg?requireActive=false"></a>
498
+ <a href="https://opencollective.com/webpack/backer/66/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/66/avatar.svg?requireActive=false"></a>
499
+ <a href="https://opencollective.com/webpack/backer/67/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/67/avatar.svg?requireActive=false"></a>
500
+ <a href="https://opencollective.com/webpack/backer/68/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/68/avatar.svg?requireActive=false"></a>
501
+ <a href="https://opencollective.com/webpack/backer/69/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/69/avatar.svg?requireActive=false"></a>
502
+ <a href="https://opencollective.com/webpack/backer/70/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/70/avatar.svg?requireActive=false"></a>
503
+ <a href="https://opencollective.com/webpack/backer/71/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/71/avatar.svg?requireActive=false"></a>
504
+ <a href="https://opencollective.com/webpack/backer/72/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/72/avatar.svg?requireActive=false"></a>
505
+ <a href="https://opencollective.com/webpack/backer/73/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/73/avatar.svg?requireActive=false"></a>
506
+ <a href="https://opencollective.com/webpack/backer/74/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/74/avatar.svg?requireActive=false"></a>
507
+ <a href="https://opencollective.com/webpack/backer/75/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/75/avatar.svg?requireActive=false"></a>
508
+ <a href="https://opencollective.com/webpack/backer/76/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/76/avatar.svg?requireActive=false"></a>
509
+ <a href="https://opencollective.com/webpack/backer/77/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/77/avatar.svg?requireActive=false"></a>
510
+ <a href="https://opencollective.com/webpack/backer/78/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/78/avatar.svg?requireActive=false"></a>
511
+ <a href="https://opencollective.com/webpack/backer/79/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/79/avatar.svg?requireActive=false"></a>
512
+ <a href="https://opencollective.com/webpack/backer/80/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/80/avatar.svg?requireActive=false"></a>
513
+ <a href="https://opencollective.com/webpack/backer/81/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/81/avatar.svg?requireActive=false"></a>
514
+ <a href="https://opencollective.com/webpack/backer/82/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/82/avatar.svg?requireActive=false"></a>
515
+ <a href="https://opencollective.com/webpack/backer/83/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/83/avatar.svg?requireActive=false"></a>
516
+ <a href="https://opencollective.com/webpack/backer/84/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/84/avatar.svg?requireActive=false"></a>
517
+ <a href="https://opencollective.com/webpack/backer/85/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/85/avatar.svg?requireActive=false"></a>
518
+ <a href="https://opencollective.com/webpack/backer/86/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/86/avatar.svg?requireActive=false"></a>
519
+ <a href="https://opencollective.com/webpack/backer/87/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/87/avatar.svg?requireActive=false"></a>
520
+ <a href="https://opencollective.com/webpack/backer/88/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/88/avatar.svg?requireActive=false"></a>
521
+ <a href="https://opencollective.com/webpack/backer/89/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/89/avatar.svg?requireActive=false"></a>
522
+ <a href="https://opencollective.com/webpack/backer/90/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/90/avatar.svg?requireActive=false"></a>
523
+ <a href="https://opencollective.com/webpack/backer/91/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/91/avatar.svg?requireActive=false"></a>
524
+ <a href="https://opencollective.com/webpack/backer/92/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/92/avatar.svg?requireActive=false"></a>
525
+ <a href="https://opencollective.com/webpack/backer/93/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/93/avatar.svg?requireActive=false"></a>
526
+ <a href="https://opencollective.com/webpack/backer/94/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/94/avatar.svg?requireActive=false"></a>
527
+ <a href="https://opencollective.com/webpack/backer/95/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/95/avatar.svg?requireActive=false"></a>
528
+ <a href="https://opencollective.com/webpack/backer/96/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/96/avatar.svg?requireActive=false"></a>
529
+ <a href="https://opencollective.com/webpack/backer/97/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/97/avatar.svg?requireActive=false"></a>
530
+ <a href="https://opencollective.com/webpack/backer/98/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/98/avatar.svg?requireActive=false"></a>
531
+ <a href="https://opencollective.com/webpack/backer/99/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/99/avatar.svg?requireActive=false"></a>
532
+ <a href="https://opencollective.com/webpack/backer/100/website?requireActive=false" target="_blank"><img src="https://opencollective.com/webpack/backer/100/avatar.svg?requireActive=false"></a>
533
+
534
+ <h2 align="center">Thanks to</h2>
535
+ <p align="center">(In chronological order)</p>
536
+
537
+ * @google for [Google Web Toolkit (GWT)](http://www.gwtproject.org/), which aims to compile Java to JavaScript. It features a similar [Code Splitting](http://www.gwtproject.org/doc/latest/DevGuideCodeSplitting.html) as webpack.
538
+ * @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-webmake. Interestingly the [Code Splitting issue is still open](https://github.com/medikoo/modules-webmake/issues/7) (thanks also to @Phoscur for the discussion).
539
+ * @substack for [browserify](http://browserify.org/), which is a similar project and source for many ideas.
540
+ * @jrburke for [require.js](http://requirejs.org/), which is a similar project and source for many ideas.
541
+ * @defunctzombie for the [browser-field spec](https://gist.github.com/defunctzombie/4339901), which makes modules available for node.js, browserify and webpack.
542
+ * Every early webpack user, which contributed to webpack by writing issues or PRs. You influenced the direction...
543
+ * @shama, @jhnns and @sokra for maintaining this project
544
+ * Everyone who has written a loader for webpack. You are the ecosystem...
545
+ * Everyone I forgot to mention here, but also influenced webpack.
546
+
547
+
548
+ [npm]: https://img.shields.io/npm/v/webpack.svg
549
+ [npm-url]: https://npmjs.com/package/webpack
550
+
551
+ [node]: https://img.shields.io/node/v/webpack.svg
552
+ [node-url]: https://nodejs.org
553
+
554
+ [deps]: https://img.shields.io/david/webpack/webpack.svg
555
+ [deps-url]: https://david-dm.org/webpack/webpack
556
+
557
+ [tests]: https://img.shields.io/travis/webpack/webpack/master.svg
558
+ [tests-url]: https://travis-ci.org/webpack/webpack
559
+
560
+ [builds-url]: https://ci.appveyor.com/project/sokra/webpack/branch/master
561
+ [builds]: https://ci.appveyor.com/api/projects/status/github/webpack/webpack?svg=true
562
+
563
+ [licenses-url]: https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack?ref=badge_shield
564
+ [licenses]: https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Fwebpack%2Fwebpack.svg?type=shield
565
+
566
+ [cover]: https://img.shields.io/coveralls/webpack/webpack.svg
567
+ [cover-url]: https://coveralls.io/r/webpack/webpack/