UNPKG

webpack

Version:

Packs CommonJs/AMD modules for the browser. Allows to split your codebase into multiple bundles, which can be loaded on demand. Support loaders to preprocess files, i.e. json, jade, coffee, css, less, ... and your custom stuff.

45 lines (29 loc) 854 B
This very simple example shows usage of CommonsJS. The three files `example.js`, `increment.js` and `math.js` form a dependency chain. They use `require(dependency)` to declare dependencies. You can see the output file that webpack creates by bundling them together in one file. Keep in mind that webpack adds comments to make reading this file easier. These commonent are removed when minimizing the file. You can also see the info messages webpack prints to console (for both normal and minimized build). # example.js ``` javascript {{example.js}} ``` # increment.js ``` javascript {{increment.js}} ``` # math.js ``` javascript {{math.js}} ``` # js/output.js ``` javascript {{js/output.js}} ``` # Info ## Uncompressed ``` {{stdout}} ``` ## Minimized (uglify-js, no zip) ``` {{min:stdout}} ```