Webpack 的构建过程一般会分为以下几步:
const path = require("path")\
module.exports = {\
entry:"./src/index.js"\
mode:"development"\
output:{\
path:path.resolve(__dirname,"./dist"),\
filename:"bundle.js"\
}\
}
复制代码
// 接收一个对象参数,key 为入口文件的目录,value为一个执行入口文件里面代码的函数\
(function (modules) {\
// installedModules 用来存放缓存\
const installedModules = {};\
// __webpack_require__用来转化入口文件里面的代码\
function __webpack_require__(moduleIid) { ... }\
// IIFE将 modules 中的 key 传递给 __webpack_require__ 函数并返回。\
return __webpack_require__(__webpack_require__.s = './src/index.js');\
}({\
'./src/index.js': (function (module, exports) {\
eval('console.log(\'test webpack entry\')');\
}),\
}));
复制代码
使用 npm 命令安装一下: npm install @babel/parser @babel/traverse @babel/core @babel/preset-env -D
要读取 Webpack 的基本配置,首先我们得有一个全局的配置文件:
const path = require('path');\
\
module.exports ={\
entry: "./src/index.js",\
mode: "development",\
output: {\
path: path.resolve(__dirname,"./dist"),\
filename: "bundle.js"\
}\
}
复制代码
然后我们新建一个类,用于实现分析编译等函数,并在构造函数中初始化配置信息:
\
class MiniWebpack{\
constructor(options){\
this.options = options;\
}\
// ...\
}
复制代码
```我们使用 fs
读取文件内容,使用 parser
将模块代码转换成抽象语法树,再使用 traverse
遍历抽象语法树,针对其中的 ImportDeclaration
节点保存模块的依赖信息,最终使用 babel.transformFromAst
方法将抽象语法树还原成 ES5 风格的代码。
parse = filename => {
// 读取文件
const fileBuffer = fs.readFileSync(filename, 'utf-8');
// 转换成抽象语法树
const ast = parser.parse(fileBuffer, { sourceType: 'module' });
const dependencies = {};
// 遍历抽象语法树
traverse(ast, {
// 处理ImportDeclaration节点
ImportDeclaration({node}){
const dirname = path.dirname(filename);
const newDirname = './' + path.join(dirname, node.source.value).replace('\', '/');
dependencies[node.source.value] = newDirname;
}
})
// 将抽象语法树转换成代码
const { code } = babel.transformFromAst(ast, null, {
presets:['@babel/preset-env']
});
return {
filename,
dependencies,
code
}
}
复制代码
return `\
(function(graph){\
function require(filename){\
function localRequire(relativePath){\
return require(graph[filename].dependencies[relativePath]);\
}\
const exports = {};\
(function(require, exports, code){\
eval(code);\
})(localRequire, exports, graph[filename].code)\
\
return exports;\
}\
\
require('${entry}');\
})(${graph})\
`\
}
复制代码
通过获取 this.options 中的 output 信息,将打包代码输出到对应文件中。
const { path: dirPath, filename } = output;\
const outputPath = path.join(dirPath, filename);\
\
// 如果没有文件夹的话,生成文件夹\
if(!fs.existsSync(dirPath)){\
fs.mkdirSync(dirPath)\
}\
// 写入文件中\
fs.writeFileSync(outputPath, code, 'utf-8');\
}
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有