前端开发配置系列文章的 github 仓库为: https://github.com/SaebaRyoo/webpack-config ,如果您在看的过程中发现了什么不足和错误,感谢您能指出!
作为一个前端开发,Webpack 一定不陌生,在前端这一领域,大多数的项目应该都是用 webpack 作为一个模块打包工具。但是当项目的规模变大后,应该都或多或少的遇到了性能相关的问题。
而以 webpack 作为工具,则可以将性能分为两种:
构建速度
页面加载速度
以这两个为目的,对我们的项目进行优化。
尽量使用高版本的 webpack 和 node
Webpack 和 Node 每次一大版本的更新都会伴随着性能优化,这是最直接明显的
speed-measure-webpack-plugin
该插件的作用就是分析 loader 和 plugin 的打包速度,针对信息定制优化方案
安装yarn add speed-measure-webpack-plugin -D
webpack.config.js
const SpeedMeasureWebpackPlugin = require("speed-measure-webpack-plugin");
const swp = new SpeedMeasureWebpackPlugin();
module.exports = swp.wrap(yourConfig);
webpack-bundle-analyzer
分析打包模块体积
多线程进行 TypeScript 的类型检查
在项目中使用了 ts-loader 后,项目中 ts 文件的类型检查会非常的耗时。所以我们通过 ts-loader 的配置关闭类型检查,并使用 fork-ts-checker-webpack-plugin 在另一个的线程进行类型检查。这会大大减少 webpack 的编译时间。
yarn add fork-ts-checker-webpack-plugin -D
module.exports = {
module: {
rules: [
{
test: /\.ts(x)?$/,
use: [
{
loader: "ts-loader",
options: {
// 关闭类型检查,即只进行转译
// 类型检查交给 fork-ts-checker-webpack-plugin 在别的的线程中做
transpileOnly: true,
},
},
],
exclude: /node_modules/,
},
],
},
plugins: [new ForkTsCheckerWebpackPlugin()],
};
预编译资源模块(该方案在 webpack4 之后,优化效果就不是很明显了)
使用 webpack 官方的 DllPlugin 进行分包
- 思路: 将一些基础且且比较稳定的包打包成一个文件,如 react、react-dom、redux、react-redux
- 方法: DLLPlugin 分包,DllReferencePlugin 对 manifest.json 引用。引用 manifest.json 会自动关联 DllPulugin 中的包
这需要一个单独的 webpack.dll.js 配置文件
const path = require("path");
const webpack = require("webpack");
module.exports = {
mode: "development",
resolve: {
extensions: [".js", ".jsx", ".json", ".less", ".css"],
modules: [__dirname, "node_modules"],
},
entry: {
// 制定需要分离的包
react: ["react", "react-dom", "redux", "react-redux"],
},
output: {
filename: "[name].dll.js",
path: path.join(__dirname, "dll/"),
library: "[name]_[fullhash]",
},
plugins: [
new webpack.DllPlugin({
name: "[name]_[fullhash]",
path: path.join(__dirname, "dll", "manifest.json"),
}),
],
};
在根目录创建一个 dll 目录,然后运行webpack --config webpack.dll.js
,将一些基础包提前编译出来,dll 目录下会有 manifest.json react.dll.js 两个文件
然后在主要的 webpack 配置中引用
需要安装一个插件将 dll 文件导入到 html 中yarn add add-asset-html-webpack-plugin -D
module.exports = {
plugins: [
// 将预编译的公共库导入到html中
new AddAssetHtmlPlugin({ filepath: require.resolve("./dll/react.dll.js") }),
// webpack4之后dllPlugin对性能的提升就不大了
new webpack.DllReferencePlugin({
context: __dirname,
// manifest.json就是对我们要引入包的描述
manifest: require("./dll/manifest.json"),
}),
],
};
多进程并行压缩 js 代码, css 代码压缩
module.exports = {
optimization: {
minimize: true,
minimizer: [
// js压缩
new TerserPlugin({
parallel: 4 // 默认为当前电脑cpu的两倍 os.cpus().length - 1
})
// css压缩
new CssMinimizerPlugin(),
]
}
}
缩小构建目标
目的:尽可能的少构建模块
比如 babel-loader 不解析 node_modules
优化 resolve.modules 配置(减少模块搜索层级)
优化 resolve.mainFields 配置
优化 resolve.extensions 配置
合理使用 alias
使用 tree shaking 擦除无用的 js 和 css
webpack 中,只要使用的是 es6 的语法,默认都会对 js 代码进行 tree shaking
但是 css 代码并不能 tree shaking,所以需要使用到 purgecss-webpack-plugin
安装yarn add purgecss-webpack-plugin@4.1.3 -D
.
为什么要安装 4.1.3 版本呢?因为我使用的是 webpack5,这个最新版本 5.0.0 在 webpakc 中有一个 Constructor Error 的错误,具体请看
const path = require("path");
const glob = require("glob");
const PATHS = {
src: path.join(__dirname, "src"),
};
module.exports = {
plugins: [
new PurgecssPlugin({
paths: glob.sync(`${PATHS.src}/**/*`, { nodir: true }),
}),
],
};
对图片进行压缩
首先安装对应插件yarn add image-minimizer-webpack-plugin @squoosh/lib -D
在这个安装的过程中可能会出现错误(我是在使用 imagemin 时出现的,可能和@squoosh/lib 无关),可以按照以下方法逐步排除(我的是在 mac 中出现的,如果是在别的环境,就按照别的环境的命令安装)
- node lib/install.js error:
brew install automake autoconf libtool
https://github.com/imagemin/imagemin-mozjpeg/issues/11 - Permission denied @ apply2files:
sudo chown -R ${LOGNAME}:staff /usr/local/lib/node_modules
https://stackoverflow.com/questions/61899041/macos-permission-denied-apply2files-usr-local-lib-node-modules-expo-cli-n - Build error: no nasm (Netwide Assembler) found:
brew install nasm
然后就是在生产构建流程中加入以下配置
module.exports = {
optimization: {
minimizer: [
//...
new ImageMinimizerPlugin({
minimizer: {
implementation: ImageMinimizerPlugin.squooshMinify,
options: {
// Your options for `squoosh`
// The document where you can find options is https://github.com/webpack-contrib/image-minimizer-webpack-plugin#optimize-with-squoosh
},
},
}),
],
},
};
对项目进行分包 更多细节可以看这篇文章
基本分包策略:
- 公共的库是一定要尽量拆的。
- 公共的库尽量做到按需加载,这也是优化首屏加载需要注意的。
- 分包不能太细,0KB 至 10 KB 的包是极小的包,应当考虑合并。10 KB 至 100 KB 的包是小包,比较合适;100 KB 至 200 KB 的包只能是比较核心重要的包,需要重点关注,大于 200KB 的包就需要考虑拆包了。当然,也不排除一些特殊情况。
module.exports = {
optimization: {
runtimeChunk: "single",
splitChunks: {
// chunks: 'async',
// minSize: 20000,
// minRemainingSize: 0,
// minChunks: 1,
// maxAsyncRequests: 30,
// maxInitialRequests: 30,
// enforceSizeThreshold: 50000,
cacheGroups: {
// 提取公共资源
vendor: {
test: /[\\/]node_modules[\\/]_?react(.*)/,
name: "vendors-react-bucket",
priority: 20,
chunks: "all",
},
},
},
},
};
使用 externals 将第三方库排除在打包的 bundle 外
将一些比较稳定的,常用的第三方库分离出打包流程中,使用 cdn 进行加载,能很有效的降低 bundle 的体积,加快首屏渲染时间,突破浏览器对同一域名下资源并发请求的限制
module.exports = {
// 使用cdn来增加浏览器针对同一域名的并发限制,使用externals将这些库排除在bundle外
externals: {
react: "react",
"react-dom": {
commonjs: "react-dom",
amd: "react-dom",
root: "_", // 指向全局变量
},
redux: "redux",
"react-redux": "react-redux",
"react-router": "react-router",
"react-router-dom": "react-router-dom",
},
};
然后将这些排除的第三方库的稳定包采用 cdn 部署,并在项目的入口index.html
文件中引入
<script
crossorigin
src="https://unpkg.com/react@18/umd/react.production.min.js"
></script>
<script
crossorigin
src="https://unpkg.com/react-dom@18/umd/react-dom.production.min.js"
></script>