本文主要介绍的是如何减小部署包的体积,从而减少冷启动时间。
在方式上,其实各个Nodejs
框架优化冷启动的方式都差不多,这样的方案完全可以无缝同步到其他的框架中,我们只需要选择自己喜欢的打包工具即可。
Nestjs
默认支持使用 webpack
进行打包,只需在 nest-cli
的 build script
参数中配置 --webpack
即可:
nest build --webpack
默认使用根目录下的 webpack.config.js
所以为了减小部署包的体积,我们可以这么写:
const path = require('path');
module.exports = (options, webpack) => {
// 懒加载的包
const lazyImports = [
'@nestjs/microservices/microservices-module',
'@nestjs/websockets/socket-module',
'swagger-ui-express',
'class-transformer/storage',
];
/** @type {import('webpack').Configuration} */
const config = {
...options,
// 有些不能打包,必须安装的可以放在 externals 数组中
externals: [],
plugins: [
...options.plugins,
new webpack.IgnorePlugin({
checkResource(resource) {
if (lazyImports.includes(resource)) {
try {
require.resolve(resource);
} catch (err) {
return true;
}
}
return false;
},
}),
],
// serverless 入口文件
entry: './src/sls.ts',
output: {
filename: 'index.js',
path: path.resolve(__dirname, 'code'),
chunkFormat: 'commonjs',
library: {
type: 'commonjs2',
},
},
};
return config;
};
这样就大大减小了 npm
包的体积,从而加快了部署和冷启动的速度。
这个配置,和官方提供的有些不同,主要是因为官方的场景主要在国外的云厂商,而这个配置是针对阿里云,腾讯云进行配置的。
快速使用 serverless-devs
一键部署到阿里云函数计算。