code spliting

接下来说的 code spliting 都是指 dynamic imports (动态导入),不涉及如何设置多个入口起点问题

关于动态导入,有两种方法:一种是处于ES提案第三阶段的 import(),另一种是 commonjs 草案的 require.ensure,这个只是个草案,并没有纳入规范,但是 webpack 利用这个实现了早期的动态导入。

import() 语法为例,测试用例如下:

// index.js
import(/* webpackChunkName: "foo" */ './foo').then(({ foo }) => {console.log(foo)
})
import(/* webpackChunkName: "bar" */ './bar').then((module) => {console.log(module.default(), module.bar1())
})
复制代码
// foo.js
export const foo = 2
复制代码
// bar.js
export default function bar() {console.log('bar es Modules')
}
export function bar1() {console.log('bar es Modules')
}
复制代码

因为这是一个处于 stage 3的语法,所以默认 babel 识别不了,这时候会报错,需要在 babel 配置中引入 @babel/plugin-syntax-dynamic-import 插件

{plugins: [['@babel/plugin-syntax-dynamic-import']]
}
复制代码

同时由于默认的 eslint 语法解析器只能解析 stage 4以及规范中的语法,所以使用 eslint 会报语法错误,所以需要将 eslint 的语法解析器更换为 babel-eslint

npm i babel-eslint -D
复制代码

eslint 配置文件

{"parser": "babel-eslint",
}
复制代码

这个时候通过 webpack 打包之后就会生成三个文件,入口文件 index 内容如下:

/******/ (function(modules) { // webpackBootstrap
/******/    // install a JSONP callback for chunk loading
/******/    function webpackJsonpCallback(data) {
/******/        var chunkIds = data[0];
/******/        var moreModules = data[1];
/******/
/******/
/******/        // add "moreModules" to the modules object,
/******/        // then flag all "chunkIds" as loaded and fire callback
/******/        var moduleId, chunkId, i = 0, resolves = [];
/******/        for(;i < chunkIds.length; i++) {
/******/            chunkId = chunkIds[i];
/******/            if(installedChunks[chunkId]) {
/******/                resolves.push(installedChunks[chunkId][0]);
/******/            }
/******/            installedChunks[chunkId] = 0;
/******/        }
/******/        for(moduleId in moreModules) {
/******/            if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
/******/                modules[moduleId] = moreModules[moduleId];
/******/            }
/******/        }
/******/        if(parentJsonpFunction) parentJsonpFunction(data);
/******/
/******/        while(resolves.length) {
/******/            resolves.shift()();
/******/        }
/******/
/******/    };
/******/
/******/
/******/    // The module cache
/******/    var installedModules = {};
/******/
/******/    // object to store loaded and loading chunks
/******/    // undefined = chunk not loaded, null = chunk preloaded/prefetched
/******/    // Promise = chunk loading, 0 = chunk loaded
/******/    var installedChunks = {
/******/        "index": 0
/******/    };
/******/
/******/
/******/
/******/    // script path function
/******/    function jsonpScriptSrc(chunkId) {
/******/        return __webpack_require__.p + "" + ({"bar":"bar","foo":"foo"}[chunkId]||chunkId) + ".js"
/******/    }
/******/
/******/    // The require function
/******/    function __webpack_require__(moduleId) {
/******/
/******/        // Check if module is in cache
/******/        if(installedModules[moduleId]) {
/******/            return installedModules[moduleId].exports;
/******/        }
/******/        // Create a new module (and put it into the cache)
/******/        var module = installedModules[moduleId] = {
/******/            i: moduleId,
/******/            l: false,
/******/            exports: {}
/******/        };
/******/
/******/        // Execute the module function
/******/        modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
/******/
/******/        // Flag the module as loaded
/******/        module.l = true;
/******/
/******/        // Return the exports of the module
/******/        return module.exports;
/******/    }
/******/
/******/    // This file contains only the entry chunk.
/******/    // The chunk loading function for additional chunks
/******/    __webpack_require__.e = function requireEnsure(chunkId) {
/******/        var promises = [];
/******/
/******/
/******/        // JSONP chunk loading for javascript
/******/
/******/        var installedChunkData = installedChunks[chunkId];
/******/        if(installedChunkData !== 0) { // 0 means "already installed".
/******/
/******/            // a Promise means "currently loading".
/******/            if(installedChunkData) {
/******/                promises.push(installedChunkData[2]);
/******/            } else {
/******/                // setup Promise in chunk cache
/******/                var promise = new Promise(function(resolve, reject) {
/******/                    installedChunkData = installedChunks[chunkId] = [resolve, reject];
/******/                });
/******/                promises.push(installedChunkData[2] = promise);
/******/
/******/                // start chunk loading
/******/                var script = document.createElement('script');
/******/                var onScriptComplete;
/******/
/******/                script.charset = 'utf-8';
/******/                script.timeout = 120;
/******/                if (__webpack_require__.nc) {
/******/                    script.setAttribute("nonce", __webpack_require__.nc);
/******/                }
/******/                script.src = jsonpScriptSrc(chunkId);
/******/
/******/                onScriptComplete = function (event) {
/******/                    // avoid mem leaks in IE.
/******/                    script.onerror = script.onload = null;
/******/                    clearTimeout(timeout);
/******/                    var chunk = installedChunks[chunkId];
/******/                    if(chunk !== 0) {
/******/                        if(chunk) {
/******/                            var errorType = event && (event.type === 'load' ? 'missing' : event.type);
/******/                            var realSrc = event && event.target && event.target.src;
/******/                            var error = new Error('Loading chunk ' + chunkId + ' failed.\n(' + errorType + ': ' + realSrc + ')');
/******/                            error.type = errorType;
/******/                            error.request = realSrc;
/******/                            chunk[1](error);
/******/                        }
/******/                        installedChunks[chunkId] = undefined;
/******/                    }
/******/                };
/******/                var timeout = setTimeout(function(){
/******/                    onScriptComplete({ type: 'timeout', target: script });
/******/                }, 120000);
/******/                script.onerror = script.onload = onScriptComplete;
/******/                document.head.appendChild(script);
/******/            }
/******/        }
/******/        return Promise.all(promises);
/******/    };
/******/
/******/    // expose the modules object (__webpack_modules__)
/******/    __webpack_require__.m = modules;
/******/
/******/    // expose the module cache
/******/    __webpack_require__.c = installedModules;
/******/
/******/    // define getter function for harmony exports
/******/    __webpack_require__.d = function(exports, name, getter) {
/******/        if(!__webpack_require__.o(exports, name)) {
/******/            Object.defineProperty(exports, name, { enumerable: true, get: getter });
/******/        }
/******/    };
/******/
/******/    // define __esModule on exports
/******/    __webpack_require__.r = function(exports) {
/******/        if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
/******/            Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
/******/        }
/******/        Object.defineProperty(exports, '__esModule', { value: true });
/******/    };
/******/
/******/    // create a fake namespace object
/******/    // mode & 1: value is a module id, require it
/******/    // mode & 2: merge all properties of value into the ns
/******/    // mode & 4: return value when already ns object
/******/    // mode & 8|1: behave like require
/******/    __webpack_require__.t = function(value, mode) {
/******/        if(mode & 1) value = __webpack_require__(value);
/******/        if(mode & 8) return value;
/******/        if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
/******/        var ns = Object.create(null);
/******/        __webpack_require__.r(ns);
/******/        Object.defineProperty(ns, 'default', { enumerable: true, value: value });
/******/        if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
/******/        return ns;
/******/    };
/******/
/******/    // 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;
/******/    };
/******/
/******/    // Object.prototype.hasOwnProperty.call
/******/    __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
/******/
/******/    // __webpack_public_path__
/******/    __webpack_require__.p = "/";
/******/
/******/    // on error function for async loading
/******/    __webpack_require__.oe = function(err) { console.error(err); throw err; };
/******/
/******/    var jsonpArray = window["webpackJsonp"] = window["webpackJsonp"] || [];
/******/    var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
/******/    jsonpArray.push = webpackJsonpCallback;
/******/    jsonpArray = jsonpArray.slice();
/******/    for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
/******/    var parentJsonpFunction = oldJsonpFunction;
/******/
/******/
/******/    // Load entry module and return exports
/******/    return __webpack_require__(__webpack_require__.s = 0);
/******/ })
/************************************************************************/
/******/ ({/***/ "./src/index.js":
/*!**********************!*\!*** ./src/index.js ***!\**********************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {__webpack_require__.e(/*! import() | foo */ "foo").then(__webpack_require__.bind(null, /*! ./foo */ "./src/foo.js")).then(function (_ref) {var foo = _ref.foo;console.log(foo);
});
__webpack_require__.e(/*! import() | bar */ "bar").then(__webpack_require__.bind(null, /*! ./bar */ "./src/bar.js")).then(function (module) {console.log(module.default(), module.bar1());
});/***/ }),/***/ 0:
/*!****************************!*\!*** multi ./src/index.js ***!\****************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {module.exports = __webpack_require__(/*! /Users/huruji/Documents/huruji/github/saso/examples/code-spliting/src/index.js */"./src/index.js");/***/ })/******/ });
复制代码

简单看下就可以发现,加载模块的核心是一个名为 __webpack_require__.e 的方法,这个方法主要做的事情是

  1. 判断 chunk 是否被缓存过,没有缓存则加载模块,缓存过则直接 resolve
  2. 动态创建 script 标签,onload 之后会返回一个 Promiseonerror后直接使用 reject,最后会被添加到 document.head

因为内部使用的是 Promise 所以同样我们也可以使用 async await

code spliting with vue

官方文档中的 异步组件 一章已经介绍了这种技术,只需要在注册组件的时候使用 import() 语法即可,一个简单的例子如下:

<template><section><div>app</div><loading></loading></section>
</template><script>
export default {components: {loading: () => import("./Loading")}
}
</script>复制代码

除此之外,Vue 从 2.3 版本开始为了方便用户处理加载异步chunk时的loading状态和error状态,可以返回一个含有状态的对象,官方示例如下:

const AsyncComponent = () => ({// 需要加载的组件 (应该是一个 `Promise` 对象)component: import('./MyComponent.vue'),// 异步组件加载时使用的组件loading: LoadingComponent,// 加载失败时使用的组件error: ErrorComponent,// 展示加载时组件的延时时间。默认值是 200 (毫秒)delay: 200,// 如果提供了超时时间且组件加载也超时了,// 则使用加载失败时使用的组件。默认值是:`Infinity`timeout: 3000
})
复制代码

一个简单的栗子,我们模拟5秒的loading状态,如下:

<template><section><div>app</div><loading></loading></section>
</template><script>
import Loading from "./Loading"
import Error from "./Error"export default {components: {loading: () => ({component: (() => {return new Promise(resolve => {setTimeout(() => {import("./List").then(resolve)}, 5000)})})(),loading: Loading,error: Error})}
}
</script>
复制代码

code spliting with react

React 的 code spliting 的实现类似,需要使用 React.lazy 方法处理异步的组件,同时在 jsx 中需要使用 react 内置的 Suspense 组件包裹异步组件,同时可以指定 fallback props 作为loding 时的替代显示,如下:

import React from 'react'
const Suspense = React.Suspense
import Loading from './Loading'
import Error from './Error'const List = React.lazy(() =>new Promise((resolve, reject) => {setTimeout(() => {import('./List').then(resolve)}, 5000)})
)
export default class App extends React.Component {render() {return (<div><div>app</div><Suspense fallback={<Loading />}><List /></Suspense></div>)}
}
复制代码

如果你需要对加载异步组件出错的情况做处理,你可以使用 react 的 Error Boundaries ,通过定义一个实现了 getDerivedStateFromError 静态方法的 react 组件,并且包裹相应的异步组件即可

import React from 'react'export default class Error extends React.Component {constructor(props) {super(props)this.state = { hasError: false }}static getDerivedStateFromError(error) {return { hasError: true }}render() {if (this.state.hasError) {return <h1>Something went wrong.</h1>}return this.props.children}
}复制代码

父组件修改为

import React from 'react'
const Suspense = React.Suspense
import Loading from './Loading'
import Error from './Error'const List = React.lazy(() =>new Promise((resolve, reject) => {setTimeout(() => {import('./List').then(() => {reject()})}, 5000)})
)
export default class App extends React.Component {render() {return (<div><div>app</div><Error><Suspense fallback={<Loading />}><List /></Suspense></Error></div>)}
}复制代码

最后是一个广告贴,最近新开了一个分享技术的公众号,欢迎大家关注?

转载于:https://juejin.im/post/5ccdb3eaf265da039d3294f8

webpack 之 code spliting相关推荐

  1. Webpack和Code Splitting

    一.Webpack和Code Splitting之间的关系 Code Splitting指的是代码分割,什么是代码分割,代码分割和webpack有什么关系呢 CleanWebpackPlugin只能清 ...

  2. webpack 和 code splitting

    Code Splitting指的是代码分割,那么什么是代码分割,webpack和code splitting又有什么样的联系呢? 使用npm run dev:"webpack-dev-ser ...

  3. Webpack的Code Splitting实现按需加载

    一. 什么是Code Splitting? 在最开始使用Webpack的时候, 都是将所有的js文件全部打包到一个build.js文件中(文件名取决与在webpack.config.js文件中outp ...

  4. webpack之Code Splitting

    背景 为了降低http请求数量,把所有的代码打包成一个单独的js文件.但当这个js文件过大时,导致第一次页面加载速度过慢. 解决 把代码进行分块,按需加载:还可以利用浏览器缓存,下次用它的时候直接从缓 ...

  5. JavaScript模块 commonJS、AMD、UMD、ES6

    模块化 早期,立即调用函数闭包.类.对象实现 Node有自己的模块系统 ES6,JavaScript依托import.export的静态模块系统(不能实现模块的按需加载) 虽然浏览器很早就支持动态导入 ...

  6. npm run buil构建后页面白屏_从Npm Script到Webpack,6种常见的前端构建工具对比

    从Npm Script到Webpack,6种常见的前端构建工具对比 小编说:历史上先后出现了一系列构建工具,它们各有优缺点.由于前端工程师很熟悉JavaScript,Node.js又可以胜任所有构建需 ...

  7. 如何利用 webpack 在项目中做出亮点

    大家好,我是若川.最近这几年,在前端代码打包器领域内,webpack 算得上是时下最流行的前端打包工具. 它可以分析各个模块的依赖关系,最终打包成我们常见的静态文件:.js . .css . .jpg ...

  8. webpack中的chunk

    Webpack 理解 Chunk - 掘金 Webpack 理解 Chunk 期望 希望读过本篇文章,你在看Webpack配置的时候,能在脑中形成Chunk的生成过程. Chunk Chunk不同于e ...

  9. 为何webpack风靡全球?三大主流模块打包工具对比

    小编说:前端项目日益复杂,构建系统已经成为开发过程中不可或缺的一个部分,而模块打包(module bundler)正是前端构建系统的核心.Webpack能成为最流行的打包解决方案,并不是偶然.webp ...

最新文章

  1. Elasticsearch: 索引别名Aliases
  2. python做mysql数据迁移_Python中MySQL数据迁移到MongoDB脚本的方法
  3. RCNN (Regions with CNN) 目标物检测
  4. _stdcall调用
  5. Java RMI 框架(远程方法调用)
  6. 详解Python中的JSON以及在Python中使用JSON
  7. setdefaultencoding函数使用详解
  8. 走向.NET架构设计—第四章—业务层分层架构(前篇)
  9. android 判断ip地址合法
  10. 洛谷P1912:诗人小G(二分栈、决策单调性)
  11. 某公司的雇员分为以下若干类: Employee:这是所有员工总的父类, 属性: 员工的姓名,员工的生日月份。 方法:getSalary(
  12. 柒上网络小说漫画系统源码4.0双模板+WAP微信 | Thinkphp内核
  13. diy无感无刷电机霍尔安装_从工作原理来了解意大利Brusatori无刷电机
  14. php无需鉴权的接口,thinkphp5-restfulapi 博客 接口鉴权应用
  15. 基于周志华西瓜数据集的决策树算法及准确率测试
  16. 深度摄像头linux环境下,嵌入式Linux环境下USB摄像头应用程序设计.pdf
  17. Scratch五子棋
  18. 【数据结构与算法】前端JS实现栈
  19. Caused by org.springframework.beans.factory.NoSuchBeanDefinitionException
  20. K_A02_005 基于单片机驱动数码管 LED 按键模块(TM1638) 流水灯 0-7 按键值显示

热门文章

  1. SpringBoot - 实践阿里巴巴【Manager 层_通用业务处理层】
  2. Java 8 - Stream实战
  3. Spring Cloud【Finchley】实战-07异步下单
  4. Spring MVC-09循序渐进之文件上传(基于Servlet3.0+内置功能)
  5. linux 文件类型 管理,Linux的文件类型及用户管理
  6. android收费知乎,知乎 Android 端的一次重设计练习
  7. 微信小程序(购物车)--在wxml中设置保留小数位数
  8. 混沌系统 matlab仿真分析
  9. 如何用catia画半圆_简笔画用半圆画卡通动物
  10. webpack4.x热更新,自动刷新