博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Webpack 是如何加载模块的
阅读量:5884 次
发布时间:2019-06-19

本文共 2267 字,大约阅读时间需要 7 分钟。

Webpack 在前端开发中作为模块打包工具非常受开发者的青睐,丰富的 loader 使它可以实现各种各样的功能。本文将通过 webpack 来打包一个 js 文件,看看 webpack 是如何加载各个模块的。

两个简单的源文件

为了方便分析 webpack 加载模块的原理,我们准备了两个文件:

hello.js

const hello = {    say: arg => {        console.info('hello ' + arg || 'world');    }};export default hello;

index.js

import Hello from './hello';Hello.say('man');

index.js 作为入口文件,引用了 hello.js 模块。

Webpack 打包

在命令行执行 webpack index.js bundle.js 对入口文件进行打包,生成 bundle.js ,大体结构为(为了方便阅读,我删除了部分多余的代码):

2018-05-23-17-33-27-2018523173328

可以看到,最终生成的文件以 (function (modules) {})([模块1, 模块2]) 的方式启动,我们定义的模块被包装成一个个匿名函数,然后以数组的形式传递个一个匿名函数 function (modules) {},在这个匿名函数中定义了一个 __webpack_require__() 函数,用来加载模块,最后,通过 return __webpack_require__(__webpack_require__.s = 0); 来加载第一个模块 index.js

__webpack_require__() 函数

该函数接收一个 moduleId 作为参数,这个参数就是各个模块在数组中的索引,

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;        /******/    }

其中 installedModules 是用来缓存执行过的模块。通过 modules[moduleId].call() 来执行模块,最后返回模块的 exports。

模块接受的参数

hello.js 模块为例

(function (module, __webpack_exports__, __webpack_require__) {        "use strict";        const hello = {            say: arg => {                console.info('hello ' + arg || 'world');            }        };        /* harmony default export */        __webpack_exports__["a"] = (hello);        /***/    })

webpack 会向模块传递 module, __webpack_exports__, __webpack_require__ 三个参数,前两个是用来导出模块内的变量,第三个参数为前面介绍的 __webpack_require__() 的引用,用来导入其它模块。

转载地址:http://arlix.baihongyu.com/

你可能感兴趣的文章
PHP遍历文件夹及子文件夹所有文件
查看>>
WinForm程序中两份mdf文件问题的解决
查看>>
程序计数器、反汇编工具
查看>>
Android N: jack server failed
查看>>
如何将lotus 通讯簿导入到outlook 2003中
查看>>
WinForm 应用程序中开启新的进程及控制
查看>>
js replace,正则截取字符串内容
查看>>
Thinkphp5笔记三:创建基类
查看>>
查询反模式 - GroupBy、HAVING的理解
查看>>
Android中EditText,Button等控件的设置
查看>>
TextKit简单示例
查看>>
网格最短路径算法(Dijkstra & Fast Marching)(转)
查看>>
软链接和硬链接详解
查看>>
Redis_master-slave模式
查看>>
彻底卸载删除微软Win10易升方法
查看>>
SWT/JFACE之环境配置(一)
查看>>
应用程序日志中总是说MS DTC无法正确处理DC 升级/降级事件,是什么意思
查看>>
mybatis数据处理的几种方式
查看>>
作业2
查看>>
远程主机探测技术FAQ集 - 扫描篇
查看>>