npm install --save-dev webpack // 首先安装
webpack hello.js -o hello.bundle.js --watch // 这一就可以吧hello.js打包了 --watch就不用每次修改都要执行命令
// 建立一个 webpack.config.js 文件
const path = require('path')
module.exports={
entry:'./src/script/main.js', // 引入的文件
output:{
path: path.resolve('dist/js'), // 打包后路径
filename:'bundle.js' // 名字
}
}