文章首发于我的博客 https://github.com/mcuking/bl…
实现源码请查阅 https://github.com/mcuking/bl…
本文次要是论述如何一步步实现一个相似 webpack 的前端利用打包器。
webpack 的实质
实质上,webpack 是一个古代 JavaScript 应用程序的动态模块打包器 (module bundler)。当 webpack 解决应用程序时,它会递归地构建一个依赖关系图 (dependency graph),其中蕴含应用程序须要的每个模块,而后将所有这些模块打包成一个或多个 bundle。
webpack 就像一条生产线,要通过一系列解决流程后能力将源文件转换成输入后果。这条生产线上的每个解决流程的职责都是繁多的,多个流程之间有存在依赖关系,只有实现以后解决后能力交给下一个流程去解决。插件就像是一个插入到生产线中的一个性能,在特定的机会对生产线上的资源做解决。webpack 通过 Tapable 来组织这条简单的生产线。webpack 在运行过程中会播送事件,插件只须要监听它所关怀的事件,就能退出到这条生产线中,去扭转生产线的运作。webpack 的事件流机制保障了插件的有序性,使得整个零碎扩展性很好。
— 深入浅出 webpack 吴浩麟
Webpack 运行机制
整个运行机制是串行的,从启动到完结会顺次执行以下流程 :
- 初始化参数:从配置文件和 Shell 语句中读取与合并参数,得出最终的参数;
- 开始编译:用上一步失去的参数初始化 Compiler 对象,加载所有配置的插件,执行对象的 run 办法开始执行编译;
- 确定入口:依据配置中的 entry 找出所有的入口文件;
- 编译模块:从入口文件登程,调用所有配置的 Loader 对模块进行翻译,再找出该模块依赖的模块,再递归本步骤直到所有入口依赖的文件都通过了本步骤的解决;
- 实现模块编译:在通过第 4 步应用 Loader 翻译完所有模块后,失去了每个模块被翻译后的最终内容以及它们之间的依赖关系;
- 输入资源:依据入口和模块之间的依赖关系,组装成一个个蕴含多个模块的 Chunk,再把每个 Chunk 转换成一个独自的文件退出到输入列表,这步是能够批改输入内容的最初机会;
- 输入实现:在确定好输入内容后,依据配置确定输入的门路和文件名,把文件内容写入到文件系统。
在以上过程中,Webpack 会在特定的工夫点播送出特定的事件,插件在监听到感兴趣的事件后会执行特定的逻辑,并且插件能够调用 Webpack 提供的 API 扭转 Webpack 的运行后果
mini-pack 实现过程
首先须要明确 mini-pack 要实现的指标:
将 src 中 js 代码编译成 es5 版本,并打包成一个 bundle js(留神:只关注 js)。
上面咱们依据方才对 webpack 运行机制的论述,逐渐实现 mini-pack:
1. 首先反对定义相似 webpack.config.js 文件,可命名为 minipack.config.js,文件内定义 output、entry 等参数 。如上面所示:
const path = require('path');
module.exports = {entry: path.join(__dirname, './src/index.js'),
output: {path: path.join(__dirname, './dist'),
filename: 'main.js'
}
};
2. 而后进入编译阶段:依据 minipack.config.js 定义的参数,初始化一个 Compiler 参数,并执行 run 办法 。
index.js 代码
const Compiler = require('./compiler');
const options = require('../minipack.config');
// 依据 minipack.config.js 配置的参数,初始化 Compiler 对象,并启动编译
new Compiler(options).run();
compiler.js 代码
const {getAST, getDependencies, transform} = require('./utils');
const path = require('path');
module.exports = class Compiler {constructor(options) {const {entry, output} = options;
// 打包入口
this.entry = entry;
// 进口
this.output = output;
// 模块集
this.modules = [];}
// 启动构建
run() {const entryModule = this.buildModule(this.entry, true);
this.modules.push(entryModule);
}
// 编译单个模块
buildModule(filename, isEntry) {
let ast;
ast = getAST(filename);
return {
filename,
source: transform(ast),
dependencies: getDependencies(ast)
};
}
// 将编译的 js 模块输入到指定目录中
emitFiles() {}
};
此步骤就是将入口 js 文件编译成 module 对象,格局如下:
{
filename // 文件名
source // 代码
dependencies // 依赖文件,即该模块引入的其余模块
}
其中编译办法 getAST、转换 ast 到 code 的办法 transform、以及获取模块依赖办法 getDependencies 均独自封装在一个 utils 文件中。
const fs = require('fs');
const path = require('path');
const {parse} = require('@babel/parser');
const traverse = require('@babel/traverse').default;
const {transformFromAst} = require('@babel/core');
module.exports = {
// 将门路对应的文件 js 代码编译成 ast
getAST(path) {const content = fs.readFileSync(path, 'utf-8');
return parse(content, {sourceType: 'module'});
},
// 通过 babel-traverse 遍历所有节点
// 并依据 ImportDeclaration 节点来收集一个模块的依赖
getDependencies(ast) {const dependencies = [];
traverse(ast, {ImportDeclaration({node}) {dependencies.push(node.source.value);
}
});
return dependencies;
},
// 将转化后 ast 的代码从新转化成代码
// 并通过配置 @babel/preset-env 预置插件编译成 es5
transform(ast) {const {code} = transformFromAst(ast, null, {presets: ['@babel/preset-env']
});
return code;
}
};
3. 确定入口,依据配置中的 entry 找出所有的入口文件,下面曾经实现了对 entry 文件的编译 。
4. 从入口文件登程,对模块进行编译(这里并不打算反对运行 loader),再找出该模块依赖的模块,再递归本步骤直到所有入口依赖的文件都通过了本步骤的解决。也就是说通过 babel-traverse 工具遍历这个模块 ast 上的 ImportDeclaration 节点(对应代码中 import),查找这个模块所有的 import 的其余模块,而后以递归的形式编译其余模块,反复方才的操作 。新增代码如下:
compiler.js
module.exports = class Compiler {constructor(options) {const {entry, output} = options;
// 打包入口
this.entry = entry;
// 进口
this.output = output;
// 模块集
this.modules = [];}
// 启动构建
run() {this.buildModule(this.entry, true);
this.emitFiles();}
// 递归调用直至编译所有被援用模块
buildModule(filename, isEntry) {const _module = this.build(filename, isEntry);
this.modules.push(_module);
_module.dependencies.forEach(dependency => {this.buildModule(dependency, false);
});
}
// 编译单个模块
build(filename, isEntry) {
let ast;
if (isEntry) {ast = getAST(filename);
} else {const absolutePath = path.join(process.cwd(), './src', filename);
ast = getAST(absolutePath);
}
return {
filename,
source: transform(ast),
dependencies: getDependencies(ast)
};
}
// 将编译的 js 模块输入到指定目录中
emitFiles() {}
};
5. 实现模块编译,下面的代码曾经实现了递归编译所有被援用的模块 。
6. 输入资源,这里 mini-pack 筹备将所有模块打包放入一个文件里,并非像 webpack 那样组装成一个个蕴含多个模块的 Chunk,再把每个 Chunk 转换成一个独自的文件退出到输入列表 。
既然要将所有模块的代码打包进一个文件中,那么势必会导致命名抵触问题,为了保障各个模块互不影响,能够将不同模块别离用一个函数来包裹下(利用 js 函数作用域)。那么又会存在另一个问题 — 模块之间的援用问题。对此咱们能够自定义 require 函数,用来援用其余模块的变量或办法,而后将自定义的 require 办法以参数的模式传入刚刚的包裹函数中,以供模块中代码调用。具体模式如下:
(function(modules) {function require(filename) {var fn = modules[filename];
var module = {exports: {} };
fn(require, module, module.exports);
return module.exports;
}
return require('./entry');
})({'./entry': function(require, module, exports) {var addModule = require("./add");
console.log(addModule.add(1, 1));
},
'./add': function(require, module, exports) {
module.exports = {add: function(x, y) {return x + y;}
}
}
});
因而 Compiler 实现代码可持续欠缺如下:
module.exports = class Compiler {constructor(options) {const { entry, output} = options;
// 打包入口
this.entry = entry;
// 进口
this.output = output;
// 模块集
this.modules = [];}
// 启动构建
run() {this.buildModule(this.entry, true);
this.emitFiles();}
// 递归调用直至编译所有被援用模块
buildModule(filename, isEntry) {// 同上}
// 编译单个模块
build(filename, isEntry) {// 同上}
// 将编译的 js 模块输入到指定目录中
emitFiles() {
// 将所有模块代码别离放入一个函数中(利用函数作用域实现作用域隔离,防止变量抵触)// 同时实现一个 require 办法已实现从其余模块中引入须要的变量或办法
let modules = '';
this.modules.forEach(_module => {modules += `'${_module.filename}': function(require, module, exports) {${_module.source}},`;
});
const bundle = `(function(modules) {function require(filename) {var fn = modules[filename];
var module = {exports: {}};
fn(require, module, module.exports);
return module.exports;
}
return require('${this.entry}')
})({${modules}})`;
}
};
7. 输入实现:在确定好输入内容后,依据配置确定输入的门路和文件名,把文件内容写入到文件系统。即通过 fs 模块将编译后大代码输入到指定目录中 。代码如下:
module.exports = class Compiler {constructor(options) {const {entry, output} = options;
// 打包入口
this.entry = entry;
// 进口
this.output = output;
// 模块集
this.modules = [];}
// 启动构建
run() {this.buildModule(this.entry, true);
this.emitFiles();}
// 递归调用直至编译所有被援用模块
buildModule(filename, isEntry) {// 同上}
// 编译单个模块
build(filename, isEntry) {// 同上}
// 将编译的 js 模块输入到指定目录中
emitFiles() {
// 将所有模块代码别离放入一个函数中(利用函数作用域实现作用域隔离,防止变量抵触)// 同时实现一个 require 办法已实现从其余模块中引入须要的变量或办法
let modules = '';
this.modules.forEach(_module => {modules += `'${_module.filename}': function(require, module, exports) {${_module.source}},`;
});
const bundle = `(function(modules) {function require(filename) {var fn = modules[filename];
var module = {exports: {}};
fn(require, module, module.exports);
return module.exports;
}
return require('${this.entry}')
})({${modules}})`;
// 将编译后的代码写入到 output 指定的目录
const distPath = path.join(process.cwd(), './dist');
if (fs.existsSync(distPath)) {removeDir(distPath);
}
fs.mkdirSync(distPath);
const outputPath = path.join(this.output.path, this.output.filename);
fs.writeFileSync(outputPath, bundle, 'utf-8');
// 将编译后的 js 插入 html 中,并写入到 output 指定的目录
this.emitHtml();}
// 将 html 插入 script 标签(引入打包后的 bundle js),并输入到指定目录中
emitHtml() {const publicHtmlPath = path.join(process.cwd(), './public/index.html');
let html = fs.readFileSync(publicHtmlPath, 'utf-8');
html = html.replace(
/<\/body>/,
` <script type="text/javascript" src="./main.js"></script>
</body>`
);
const distHtmlPath = path.join(process.cwd(), './dist/index.html');
fs.writeFileSync(distHtmlPath, html, 'utf-8');
}
};
在此过程中,Webpack 会在特定的工夫点播送出特定的事件,以便告诉相应插件执行指定工作扭转打包后果。对此,并不在 mini-pack 最后的设定性能方位,因而到此为止,封装曾经实现。上面是 Compiler 的残缺代码:
const path = require('path');
const fs = require('fs');
const {getAST, getDependencies, transform, removeDir} = require('./utils');
module.exports = class Compiler {constructor(options) {const {entry, output} = options;
// 打包入口
this.entry = entry;
// 进口
this.output = output;
// 模块集
this.modules = [];}
// 启动构建
run() {this.buildModule(this.entry, true);
this.emitFiles();}
// 递归调用直至编译所有被援用模块
buildModule(filename, isEntry) {const _module = this.build(filename, isEntry);
this.modules.push(_module);
_module.dependencies.forEach(dependency => {this.buildModule(dependency, false);
});
}
// 编译单个模块
build(filename, isEntry) {
let ast;
if (isEntry) {ast = getAST(filename);
} else {const absolutePath = path.join(process.cwd(), './src', filename);
ast = getAST(absolutePath);
}
return {
filename,
source: transform(ast),
dependencies: getDependencies(ast)
};
}
// 将编译的 js 模块输入到指定目录中
emitFiles() {
// 将所有模块代码别离放入一个函数中(利用函数作用域实现作用域隔离,防止变量抵触)// 同时实现一个 require 办法已实现从其余模块中引入须要的变量或办法
let modules = '';
this.modules.forEach(_module => {modules += `'${_module.filename}': function(require, module, exports) {${_module.source}},`;
});
const bundle = `(function(modules) {function require(filename) {var fn = modules[filename];
var module = {exports: {}};
fn(require, module, module.exports);
return module.exports;
}
return require('${this.entry}')
})({${modules}})`;
// 将编译后的代码写入到 output 指定的目录
const distPath = path.join(process.cwd(), './dist');
if (fs.existsSync(distPath)) {removeDir(distPath);
}
fs.mkdirSync(distPath);
const outputPath = path.join(this.output.path, this.output.filename);
fs.writeFileSync(outputPath, bundle, 'utf-8');
// 将编译后的 js 插入 html 中,并写入到 output 指定的目录
this.emitHtml();}
// 将 html 插入 script 标签(引入打包后的 bundle js),并输入到指定目录中
emitHtml() {const publicHtmlPath = path.join(process.cwd(), './public/index.html');
let html = fs.readFileSync(publicHtmlPath, 'utf-8');
html = html.replace(
/<\/body>/,
` <script type="text/javascript" src="./main.js"></script>
</body>`
);
const distHtmlPath = path.join(process.cwd(), './dist/index.html');
fs.writeFileSync(distHtmlPath, html, 'utf-8');
}
};
结束语
到这里一个简略的前端我的项目打包器曾经实现了,残缺实现代码请查阅 mini-pack。经验了整个过程,置信读者对前端我的项目打包过程的了解会更加深刻了。