webpack/examples/extra-async-chunk-advanced/README.md

353 lines
13 KiB
Markdown
Raw Normal View History

# example.js
``` javascript
require(["./a", "./b", "./c"], function(a, b, c) {});
require.ensure(["./a"], function(require) {
require("./b");
require("./d");
});
require.ensure(["./a", "./e"], function(require) {
require("./a");
require.ensure(["./b"], function(require) {
require("./f");
});
require.ensure(["./b"], function(require) {
require("./g");
});
});
```
# webpack.config.js
``` javascript
var CommonsChunkPlugin = require("../../lib/optimize/CommonsChunkPlugin");
2017-03-31 02:25:01 +08:00
module.exports = {
plugins: [
new CommonsChunkPlugin({
name: "main",
async: "async1"
}),
new CommonsChunkPlugin({
name: "main",
async: "async2",
minChunks: 2
}),
new CommonsChunkPlugin({
async: true
}),
]
2017-03-31 02:25:01 +08:00
};
```
# js/output.js
2017-03-31 02:42:42 +08:00
<details><summary><code>/******/ (function(modules) { /* webpackBootstrap */ })</code></summary>
``` javascript
/******/ (function(modules) { // webpackBootstrap
/******/ // install a JSONP callback for chunk loading
/******/ var parentJsonpFunction = window["webpackJsonp"];
2016-06-06 02:51:44 +08:00
/******/ window["webpackJsonp"] = function webpackJsonpCallback(chunkIds, moreModules, executeModules) {
/******/ // add "moreModules" to the modules object,
/******/ // then flag all "chunkIds" as loaded and fire callback
2016-06-06 02:51:44 +08:00
/******/ var moduleId, chunkId, i = 0, resolves = [], result;
/******/ for(;i < chunkIds.length; i++) {
/******/ chunkId = chunkIds[i];
/******/ if(installedChunks[chunkId])
2016-02-04 07:27:47 +08:00
/******/ resolves.push(installedChunks[chunkId][0]);
/******/ installedChunks[chunkId] = 0;
/******/ }
/******/ for(moduleId in moreModules) {
2016-06-06 02:51:44 +08:00
/******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
/******/ modules[moduleId] = moreModules[moduleId];
/******/ }
/******/ }
2016-06-06 02:51:44 +08:00
/******/ if(parentJsonpFunction) parentJsonpFunction(chunkIds, moreModules, executeModules);
2016-02-04 07:27:47 +08:00
/******/ while(resolves.length)
/******/ resolves.shift()();
2017-03-31 02:25:01 +08:00
/******/
/******/ };
2017-03-31 02:25:01 +08:00
/******/
/******/ // The module cache
/******/ var installedModules = {};
2017-03-31 02:25:01 +08:00
/******/
2016-02-04 07:27:47 +08:00
/******/ // objects to store loaded and loading chunks
/******/ var installedChunks = {
2016-09-07 18:28:56 +08:00
/******/ 7: 0
/******/ };
2017-03-31 02:25:01 +08:00
/******/
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
2017-03-31 02:25:01 +08:00
/******/
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
2017-03-31 02:25:01 +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: {}
/******/ };
2017-03-31 02:25:01 +08:00
/******/
/******/ // Execute the module function
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
2017-03-31 02:25:01 +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
/******/
/******/ // Return the exports of the module
/******/ return module.exports;
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/ // This file contains only the entry chunk.
/******/ // The chunk loading function for additional chunks
2016-02-04 07:27:47 +08:00
/******/ __webpack_require__.e = function requireEnsure(chunkId) {
/******/ if(installedChunks[chunkId] === 0)
2016-06-06 02:51:44 +08:00
/******/ return Promise.resolve();
2017-03-31 02:25:01 +08:00
/******/
/******/ // a Promise means "currently loading".
2016-02-04 07:27:47 +08:00
/******/ if(installedChunks[chunkId]) {
/******/ return installedChunks[chunkId][2];
/******/ }
2017-03-31 02:25:01 +08:00
/******/
/******/ // setup Promise in chunk cache
/******/ var promise = new Promise(function(resolve, reject) {
/******/ installedChunks[chunkId] = [resolve, reject];
/******/ });
/******/ installedChunks[chunkId][2] = promise;
/******/
2016-02-04 07:27:47 +08:00
/******/ // start chunk loading
/******/ var head = document.getElementsByTagName('head')[0];
/******/ var script = document.createElement('script');
/******/ script.type = 'text/javascript';
/******/ script.charset = 'utf-8';
/******/ script.async = true;
/******/ script.timeout = 120000;
2017-03-31 02:25:01 +08:00
/******/
2016-12-14 19:03:24 +08:00
/******/ if (__webpack_require__.nc) {
/******/ script.setAttribute("nonce", __webpack_require__.nc);
/******/ }
/******/ script.src = __webpack_require__.p + "" + chunkId + ".output.js";
2016-02-04 07:27:47 +08:00
/******/ var timeout = setTimeout(onScriptComplete, 120000);
/******/ script.onerror = script.onload = onScriptComplete;
/******/ function onScriptComplete() {
/******/ // avoid mem leaks in IE.
/******/ script.onerror = script.onload = null;
/******/ clearTimeout(timeout);
/******/ var chunk = installedChunks[chunkId];
/******/ if(chunk !== 0) {
/******/ if(chunk) chunk[1](new Error('Loading chunk ' + chunkId + ' failed.'));
/******/ installedChunks[chunkId] = undefined;
/******/ }
/******/ };
2016-12-14 19:03:24 +08:00
/******/ head.appendChild(script);
2017-03-31 02:25:01 +08:00
/******/
2016-12-14 19:03:24 +08:00
/******/ return promise;
/******/ };
2017-03-31 02:25:01 +08:00
/******/
/******/ // expose the modules object (__webpack_modules__)
/******/ __webpack_require__.m = modules;
2017-03-31 02:25:01 +08:00
/******/
/******/ // expose the module cache
/******/ __webpack_require__.c = installedModules;
2017-03-31 02:25:01 +08:00
/******/
2016-12-08 02:14:47 +08:00
/******/ // identity function for calling harmony imports with the correct context
2016-06-06 02:51:44 +08:00
/******/ __webpack_require__.i = function(value) { return value; };
2017-03-31 02:25:01 +08:00
/******/
2016-12-08 02:14:47 +08:00
/******/ // define getter function for harmony exports
2016-09-07 18:28:56 +08:00
/******/ __webpack_require__.d = function(exports, name, getter) {
2016-12-14 19:03:24 +08:00
/******/ if(!__webpack_require__.o(exports, name)) {
/******/ Object.defineProperty(exports, name, {
/******/ configurable: false,
/******/ enumerable: true,
/******/ get: getter
/******/ });
/******/ }
2016-09-07 18:28:56 +08:00
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2016-09-07 18:28:56 +08:00
/******/ // getDefaultExport function for compatibility with non-harmony modules
/******/ __webpack_require__.n = function(module) {
/******/ var getter = module && module.__esModule ?
/******/ function getDefault() { return module['default']; } :
/******/ function getModuleExports() { return module; };
/******/ __webpack_require__.d(getter, 'a', getter);
/******/ return getter;
/******/ };
2017-03-31 02:25:01 +08:00
/******/
2016-09-07 18:28:56 +08:00
/******/ // Object.prototype.hasOwnProperty.call
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
2017-03-31 02:25:01 +08:00
/******/
2016-02-04 20:02:53 +08:00
/******/ // __webpack_public_path__
/******/ __webpack_require__.p = "js/";
2017-03-31 02:25:01 +08:00
/******/
2016-02-04 07:27:47 +08:00
/******/ // on error function for async loading
2016-06-06 02:51:44 +08:00
/******/ __webpack_require__.oe = function(err) { console.error(err); throw err; };
2017-03-31 02:25:01 +08:00
/******/
/******/ // Load entry module and return exports
2017-03-31 02:25:01 +08:00
/******/ return __webpack_require__(__webpack_require__.s = 5);
/******/ })
/************************************************************************/
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
2016-02-04 07:27:47 +08:00
/******/ ({
2017-03-31 02:25:01 +08:00
/***/ 5:
2016-09-07 18:28:56 +08:00
/* unknown exports provided */
/* all exports used */
/*!********************!*\
!*** ./example.js ***!
\********************/
2017-03-31 02:25:01 +08:00
/***/ (function(module, exports, __webpack_require__) {
2016-12-14 19:03:24 +08:00
Promise.all/* require */([__webpack_require__.e(1), __webpack_require__.e(0), __webpack_require__.e(4)]).then(function() { var __WEBPACK_AMD_REQUIRE_ARRAY__ = [__webpack_require__(/*! ./a */ 0), __webpack_require__(/*! ./b */ 1), __webpack_require__(/*! ./c */ 2)]; (function(a, b, c) {}.apply(null, __WEBPACK_AMD_REQUIRE_ARRAY__));}).catch(__webpack_require__.oe);
2016-12-14 19:03:24 +08:00
Promise.all/* require.ensure */([__webpack_require__.e(1), __webpack_require__.e(0), __webpack_require__.e(3)]).then((function(require) {
2016-09-07 18:28:56 +08:00
__webpack_require__(/*! ./b */ 1);
__webpack_require__(/*! ./d */ 3);
2016-12-14 19:03:24 +08:00
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
2016-12-14 19:03:24 +08:00
Promise.all/* require.ensure */([__webpack_require__.e(1), __webpack_require__.e(2)]).then((function(require) {
2016-09-07 18:28:56 +08:00
__webpack_require__(/*! ./a */ 0);
2016-12-14 19:03:24 +08:00
Promise.all/* require.ensure */([__webpack_require__.e(0), __webpack_require__.e(6)]).then((function(require) {
2017-03-31 02:25:01 +08:00
__webpack_require__(/*! ./f */ 6);
2016-12-14 19:03:24 +08:00
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
Promise.all/* require.ensure */([__webpack_require__.e(0), __webpack_require__.e(5)]).then((function(require) {
2017-03-31 02:25:01 +08:00
__webpack_require__(/*! ./g */ 7);
2016-12-14 19:03:24 +08:00
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
}).bind(null, __webpack_require__)).catch(__webpack_require__.oe);
2017-03-31 02:25:01 +08:00
/***/ })
2016-02-04 07:27:47 +08:00
/******/ });
```
# Info
## Uncompressed
```
2017-03-31 02:25:01 +08:00
Hash: fcd85928f3d638b2b3af
Version: webpack 2.3.2
Asset Size Chunks Chunk Names
2017-03-31 02:25:01 +08:00
0.output.js 220 bytes 0 [emitted] async2
1.output.js 211 bytes 1 [emitted] async1
2.output.js 214 bytes 2 [emitted]
3.output.js 214 bytes 3 [emitted]
4.output.js 214 bytes 4 [emitted]
5.output.js 214 bytes 5 [emitted]
6.output.js 214 bytes 6 [emitted]
output.js 7.22 kB 7 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2016-12-14 19:03:24 +08:00
chunk {0} 0.output.js (async2) 21 bytes {2} {7} [rendered]
2017-03-31 02:25:01 +08:00
> async commons duplicate [5] ./example.js 1:0-52
> async commons duplicate [5] ./example.js 3:0-6:2
> async commons duplicate [5] ./example.js 10:1-12:3
> async commons duplicate [5] ./example.js 13:1-15:3
2016-02-04 07:27:47 +08:00
[1] ./b.js 21 bytes {0} [built]
2017-03-31 02:25:01 +08:00
amd require ./b [5] ./example.js 1:0-52
cjs require ./b [5] ./example.js 4:1-15
require.ensure item ./b [5] ./example.js 10:1-12:3
require.ensure item ./b [5] ./example.js 13:1-15:3
chunk {1} 1.output.js (async1) 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> async commons [5] ./example.js 1:0-52
> async commons [5] ./example.js 3:0-6:2
> async commons [5] ./example.js 8:0-16:2
2016-02-04 07:27:47 +08:00
[0] ./a.js 21 bytes {1} [built]
2017-03-31 02:25:01 +08:00
amd require ./a [5] ./example.js 1:0-52
require.ensure item ./a [5] ./example.js 3:0-6:2
require.ensure item ./a [5] ./example.js 8:0-16:2
cjs require ./a [5] ./example.js 9:1-15
chunk {2} 2.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 8:0-16:2
2016-09-07 18:28:56 +08:00
[4] ./e.js 21 bytes {2} [built]
2017-03-31 02:25:01 +08:00
require.ensure item ./e [5] ./example.js 8:0-16:2
chunk {3} 3.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 3:0-6:2
2016-09-07 18:28:56 +08:00
[3] ./d.js 21 bytes {3} [built]
2017-03-31 02:25:01 +08:00
cjs require ./d [5] ./example.js 5:1-15
chunk {4} 4.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 1:0-52
2016-09-07 18:28:56 +08:00
[2] ./c.js 21 bytes {4} [built]
2017-03-31 02:25:01 +08:00
amd require ./c [5] ./example.js 1:0-52
chunk {5} 5.output.js 21 bytes {2} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 13:1-15:3
[7] ./g.js 21 bytes {5} [built]
cjs require ./g [5] ./example.js 14:2-16
chunk {6} 6.output.js 21 bytes {2} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 10:1-12:3
[6] ./f.js 21 bytes {6} [built]
cjs require ./f [5] ./example.js 11:2-16
2016-12-14 19:03:24 +08:00
chunk {7} output.js (main) 362 bytes [entry] [rendered]
2017-03-31 02:25:01 +08:00
> main [5] ./example.js
[5] ./example.js 362 bytes {7} [built]
```
## Minimized (uglify-js, no zip)
```
2017-03-31 02:25:01 +08:00
Hash: fcd85928f3d638b2b3af
Version: webpack 2.3.2
Asset Size Chunks Chunk Names
0.output.js 50 bytes 0 [emitted] async2
1.output.js 49 bytes 1 [emitted] async1
2.output.js 51 bytes 2 [emitted]
3.output.js 51 bytes 3 [emitted]
4.output.js 51 bytes 4 [emitted]
5.output.js 51 bytes 5 [emitted]
6.output.js 51 bytes 6 [emitted]
2016-12-14 19:03:24 +08:00
output.js 1.81 kB 7 [emitted] main
2016-09-07 18:28:56 +08:00
Entrypoint main = output.js
2016-12-14 19:03:24 +08:00
chunk {0} 0.output.js (async2) 21 bytes {2} {7} [rendered]
2017-03-31 02:25:01 +08:00
> async commons duplicate [5] ./example.js 1:0-52
> async commons duplicate [5] ./example.js 3:0-6:2
> async commons duplicate [5] ./example.js 10:1-12:3
> async commons duplicate [5] ./example.js 13:1-15:3
2016-02-04 07:27:47 +08:00
[1] ./b.js 21 bytes {0} [built]
2017-03-31 02:25:01 +08:00
amd require ./b [5] ./example.js 1:0-52
cjs require ./b [5] ./example.js 4:1-15
require.ensure item ./b [5] ./example.js 10:1-12:3
require.ensure item ./b [5] ./example.js 13:1-15:3
chunk {1} 1.output.js (async1) 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> async commons [5] ./example.js 1:0-52
> async commons [5] ./example.js 3:0-6:2
> async commons [5] ./example.js 8:0-16:2
2016-02-04 07:27:47 +08:00
[0] ./a.js 21 bytes {1} [built]
2017-03-31 02:25:01 +08:00
amd require ./a [5] ./example.js 1:0-52
require.ensure item ./a [5] ./example.js 3:0-6:2
require.ensure item ./a [5] ./example.js 8:0-16:2
cjs require ./a [5] ./example.js 9:1-15
chunk {2} 2.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 8:0-16:2
2016-09-07 18:28:56 +08:00
[4] ./e.js 21 bytes {2} [built]
2017-03-31 02:25:01 +08:00
require.ensure item ./e [5] ./example.js 8:0-16:2
chunk {3} 3.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 3:0-6:2
2016-09-07 18:28:56 +08:00
[3] ./d.js 21 bytes {3} [built]
2017-03-31 02:25:01 +08:00
cjs require ./d [5] ./example.js 5:1-15
chunk {4} 4.output.js 21 bytes {7} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 1:0-52
2016-09-07 18:28:56 +08:00
[2] ./c.js 21 bytes {4} [built]
2017-03-31 02:25:01 +08:00
amd require ./c [5] ./example.js 1:0-52
chunk {5} 5.output.js 21 bytes {2} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 13:1-15:3
[7] ./g.js 21 bytes {5} [built]
cjs require ./g [5] ./example.js 14:2-16
chunk {6} 6.output.js 21 bytes {2} [rendered]
2017-03-31 02:25:01 +08:00
> [5] ./example.js 10:1-12:3
[6] ./f.js 21 bytes {6} [built]
cjs require ./f [5] ./example.js 11:2-16
2016-12-14 19:03:24 +08:00
chunk {7} output.js (main) 362 bytes [entry] [rendered]
2017-03-31 02:25:01 +08:00
> main [5] ./example.js
[5] ./example.js 362 bytes {7} [built]
```