2015-05-22 04:49:03 +08:00
This very simple example shows usage of CommonJS.
2014-07-24 17:29:49 +08:00
The three files `example.js` , `increment.js` and `math.js` form a dependency chain. They use `require(dependency)` to declare dependencies.
2015-05-22 04:49:03 +08:00
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 comments are removed when minimizing the file.
2014-07-24 17:29:49 +08:00
You can also see the info messages webpack prints to console (for both normal and minimized build).
2012-05-07 03:14:36 +08:00
# example.js
``` javascript
2018-07-29 21:11:11 +08:00
const inc = require('./increment').increment;
const a = 1;
2012-05-07 03:14:36 +08:00
inc(a); // 2
```
# increment.js
``` javascript
2018-07-29 21:11:11 +08:00
const add = require('./math').add;
2012-05-07 03:14:36 +08:00
exports.increment = function(val) {
return add(val, 1);
};
```
2012-07-19 18:15:52 +08:00
# math.js
2012-05-07 03:14:36 +08:00
``` javascript
exports.add = function() {
var sum = 0, i = 0, args = arguments, l = args.length;
while (i < l ) {
sum += args[i++];
}
return sum;
};
```
2018-01-05 04:39:29 +08:00
# dist/output.js
2012-05-07 03:14:36 +08:00
2017-03-31 02:42:42 +08:00
< details > < summary > < code > /******/ (function(modules) { /* webpackBootstrap */ })< / code > < / summary >
2012-05-07 03:14:36 +08:00
``` javascript
2018-12-19 21:05:17 +08:00
/******/ (function(modules, runtime) { // webpackBootstrap
/******/ "use strict";
2013-03-28 17:31:52 +08:00
/******/ // The module cache
/******/ var installedModules = {};
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // The require function
2014-03-25 17:44:10 +08:00
/******/ function __webpack_require__ (moduleId) {
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Check if module is in cache
2017-05-23 04:45:18 +08:00
/******/ if(installedModules[moduleId]) {
2014-03-25 17:44:10 +08:00
/******/ return installedModules[moduleId].exports;
2017-05-23 04:45:18 +08:00
/******/ }
2013-03-28 17:31:52 +08:00
/******/ // Create a new module (and put it into the cache)
/******/ var module = installedModules[moduleId] = {
2016-06-06 02:51:44 +08:00
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
2013-03-28 17:31:52 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Execute the module function
2014-03-25 17:44:10 +08:00
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__ );
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Flag the module as loaded
2016-06-06 02:51:44 +08:00
/******/ module.l = true;
2017-03-31 02:25:01 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Return the exports of the module
2014-03-25 17:44:10 +08:00
/******/ return module.exports;
2013-03-28 17:31:52 +08:00
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/
/******/
2018-01-20 00:06:59 +08:00
/******/
2013-03-28 17:31:52 +08:00
/******/ // Load entry module and return exports
2018-12-19 21:05:17 +08:00
/******/ return __webpack_require__ (0);
2013-03-28 17:31:52 +08:00
/******/ })
2013-03-27 01:22:30 +08:00
/************************************************************************/
2016-09-07 18:28:56 +08:00
```
2017-03-31 02:42:42 +08:00
2016-09-07 18:28:56 +08:00
< / details >
2017-03-31 02:42:42 +08:00
2016-09-07 18:28:56 +08:00
``` javascript
2013-12-16 06:30:50 +08:00
/******/ ([
/* 0 */
2017-06-05 22:12:12 +08:00
/*!********************!*\
!*** ./example.js ** *!
\********************/
/*! no static exports found */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: __webpack_require__ */
/***/ (function(__unusedmodule, __unusedexports, __webpack_require__ ) {
2017-06-05 22:12:12 +08:00
2018-09-25 23:08:35 +08:00
const inc = __webpack_require__ (/*! ./increment */ 1).increment;
const a = 1;
2017-06-05 22:12:12 +08:00
inc(a); // 2
2018-09-25 23:08:35 +08:00
2017-06-05 22:12:12 +08:00
/***/ }),
/* 1 */
2013-01-31 01:49:25 +08:00
/*!**********************!*\
!*** ./increment.js ** *!
\**********************/
2017-06-05 22:12:12 +08:00
/*! no static exports found */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: __webpack_require__ , __webpack_exports__ */
/***/ (function(__unusedmodule, exports, __webpack_require__ ) {
2013-01-31 01:49:25 +08:00
2018-09-25 23:08:35 +08:00
const add = __webpack_require__ (/*! ./math */ 2).add;
2016-09-07 18:28:56 +08:00
exports.increment = function(val) {
return add(val, 1);
};
2013-01-31 01:49:25 +08:00
2018-09-25 23:08:35 +08:00
2017-03-31 02:25:01 +08:00
/***/ }),
/* 2 */
2013-01-31 01:49:25 +08:00
/*!*****************!*\
!*** ./math.js ** *!
\*****************/
2017-06-05 22:12:12 +08:00
/*! no static exports found */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: __webpack_exports__ */
/***/ (function(__unusedmodule, exports) {
2013-01-31 01:49:25 +08:00
2016-09-07 18:28:56 +08:00
exports.add = function() {
var sum = 0, i = 0, args = arguments, l = args.length;
while (i < l ) {
sum += args[i++];
}
return sum;
};
2017-03-31 02:25:01 +08:00
/***/ })
2015-06-13 23:41:14 +08:00
/******/ ]);
2012-05-07 03:14:36 +08:00
```
# Info
2017-12-14 17:58:03 +08:00
## Unoptimized
2012-05-07 03:14:36 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2018-09-26 05:13:58 +08:00
Version: webpack 5.0.0-next
2018-12-19 21:05:17 +08:00
Asset Size Chunks Chunk Names
output.js 2.21 KiB {0} [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2018-12-19 21:05:17 +08:00
chunk {0} output.js (main) 326 bytes [entry] [rendered]
2018-01-20 00:06:59 +08:00
> .\example.js main
2018-09-25 23:08:35 +08:00
[0] ./example.js 72 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2018-12-19 21:05:17 +08:00
entry .\example.js main
2018-05-07 18:36:38 +08:00
[1] ./increment.js 98 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2018-09-25 23:08:35 +08:00
cjs require ./increment [0] ./example.js 1:12-34
[2] ./math.js 156 bytes {0} [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2018-09-25 23:08:35 +08:00
cjs require ./math [1] ./increment.js 1:12-29
2012-05-07 03:14:36 +08:00
```
2017-12-14 17:58:03 +08:00
## Production mode
2012-05-07 03:14:36 +08:00
```
2017-12-14 17:58:03 +08:00
Hash: 0a1b2c3d4e5f6a7b8c9d
2018-09-26 05:13:58 +08:00
Version: webpack 5.0.0-next
2018-12-19 21:05:17 +08:00
Asset Size Chunks Chunk Names
output.js 407 bytes {404} [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2018-12-19 21:05:17 +08:00
chunk {404} output.js (main) 326 bytes [entry] [rendered]
2018-01-20 00:06:59 +08:00
> .\example.js main
2018-12-19 21:05:17 +08:00
[275] ./example.js 72 bytes {404} [built]
entry .\example.js main
[529] ./increment.js 98 bytes {404} [built]
cjs require ./increment [275] ./example.js 1:12-34
[702] ./math.js 156 bytes {404} [built]
cjs require ./math [529] ./increment.js 1:12-29
2016-12-14 19:03:24 +08:00
```