webpack打包如果js代码特别多 就会打包出一个特别大的js
那么 我们需要将js代码分离成多个js文件引入
从而控制文件大小 优化性能
先在终端输入
npm init
按终端提示操作 就会生成一个项目 出现一个package.json文件
在终端输入
npm install webpack webpack-cli --save-dev
会生成这样的目录
然后为了更好的查看代码效果 我们引入html-webpack-plugin
npm install html-webpack-plugin --save
然后在根目录中构建src文件夹
在src下创建HelloWebpack.js
HelloWebpack.js参考代码如下
console.log('hello webpack');
在src下创建HelloWorld.js
HelloWorld.js参考代码如下
console.log('hello world');
在src下创建index.html
index.html参考代码如下
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
</body>
</html>
在根目录下创建webpack.config.js
webpack.config.js参考代码如下
//通过node获取到当前文件的位置
const path = require('path')
//导入刚引入的第三方插件html-webpack-plugin
const HtmlWebpackPplugin = require('html-webpack-plugin')
module.exports = {
//设置当前入口文件
entry: {
HelloWebpack: './src/HelloWebpack.js',
HelloWorld: './src/HelloWorld.js'
},
//出口配置
output: {
//打包的文件名
filename: '[name].bundle.js',
//生成的文件位置
path: path.resolve(__dirname, './distribution')
},
mode: 'none',
//webpack插件配置
plugins: [
//实例化html-webpack-plugin插件功能
new HtmlWebpackPplugin({
//html-webpack-plugin参数配置
//指定打包HTML文件参照的模板HTML
template: './src/index.html',
//生成的html文件名称
filename: 'app.html',
//定义打包的js文件引入在新html的哪个标签里
inject: 'head'
})
],
optimization:{
//分离配置
splitChunks: {
//将相同的公共模块代码分离出来
chunks: 'all'
}
}
}
重点就是entry 入口配置和output 出口配置
打开package.json
在scripts中加入"build": "webpack"配置项
然后在终端执行
npm run build
我们的两个js和html文件就打包出来了
然后我们用浏览器打开app.html
控制台输出的内容也没有任何问题