webpack/examples/commonjs/README.md

171 lines
4.3 KiB
Markdown
Raw Normal View History

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
2019-04-09 02:29:40 +08:00
```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
2019-04-09 02:29:40 +08:00
```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
2019-04-09 02:29:40 +08:00
```javascript
2012-05-07 03:14:36 +08:00
exports.add = function() {
var sum = 0, i = 0, args = arguments, l = args.length;
while (i < l) {
sum += args[i++];
}
return sum;
};
```
# dist/output.js
2012-05-07 03:14:36 +08:00
2019-04-09 02:29:40 +08:00
```javascript
2019-10-11 05:11:05 +08:00
/******/ (() => { // webpackBootstrap
/******/ var __webpack_modules__ = ([
/* 0 */,
2017-06-05 22:12:12 +08:00
/* 1 */
2013-01-31 01:49:25 +08:00
/*!**********************!*\
!*** ./increment.js ***!
\**********************/
2019-08-05 19:32:25 +08:00
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: __webpack_require__, __webpack_exports__ */
2019-10-11 05:11:05 +08:00
/***/ ((__unused_webpack_module, 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 ***!
\*****************/
2019-08-05 19:32:25 +08:00
/*! exports [maybe provided (runtime-defined)] [no usage info] */
2018-12-19 21:05:17 +08:00
/*! runtime requirements: __webpack_exports__ */
2019-10-11 05:11:05 +08:00
/***/ ((__unused_webpack_module, 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
/***/ })
2019-10-11 05:11:05 +08:00
/******/ ]);
```
<details><summary><code>/* webpack runtime code */</code></summary>
``` js
2019-10-11 05:11:05 +08:00
/************************************************************************/
/******/ // The module cache
/******/ var __webpack_module_cache__ = {};
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(__webpack_module_cache__[moduleId]) {
/******/ return __webpack_module_cache__[moduleId].exports;
/******/ }
/******/ // Create a new module (and put it into the cache)
/******/ var module = __webpack_module_cache__[moduleId] = {
/******/ i: moduleId,
/******/ l: false,
/******/ exports: {}
/******/ };
/******/
/******/ // Execute the module function
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
/******/
/******/ // Flag the module as loaded
/******/ module.l = true;
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
/******/
/************************************************************************/
```
</details>
``` js
2019-10-11 05:11:05 +08:00
!function() {
/*!********************!*\
!*** ./example.js ***!
\********************/
/*! exports [maybe provided (runtime-defined)] [no usage info] */
/*! runtime requirements: __webpack_require__ */
const inc = __webpack_require__(/*! ./increment */ 1).increment;
const a = 1;
inc(a); // 2
}();
/******/ })()
;
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
Version: webpack 5.0.0-beta.6
2019-10-11 05:11:05 +08:00
Asset Size
output.js 2.23 KiB [emitted] [name: main]
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2019-10-11 05:11:05 +08:00
chunk output.js (main) 326 bytes [entry] [rendered]
2019-01-25 20:15:22 +08:00
> ./example.js main
2019-10-11 05:11:05 +08:00
./example.js 72 bytes [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2019-02-05 01:52:39 +08:00
entry ./example.js main
2019-10-11 05:11:05 +08:00
./increment.js 98 bytes [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2019-10-11 05:11:05 +08:00
cjs require ./increment ./example.js 1:12-34
./math.js 156 bytes [built]
2018-09-26 05:13:58 +08:00
[used exports unknown]
2019-10-11 05:11:05 +08:00
cjs require ./math ./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
Version: webpack 5.0.0-beta.6
2019-10-11 05:11:05 +08:00
Asset Size
output.js 333 bytes [emitted] [name: main]
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2019-10-11 05:11:05 +08:00
chunk output.js (main) 326 bytes [entry] [rendered]
2019-01-25 20:15:22 +08:00
> ./example.js main
2019-10-11 05:11:05 +08:00
./example.js 72 bytes [built]
[no exports used]
entry ./example.js main
./increment.js 98 bytes [built]
cjs require ./increment ./example.js 1:12-34
./math.js 156 bytes [built]
cjs require ./math ./increment.js 1:12-29
2019-04-09 02:29:40 +08:00
```