webpack 笔记
欢迎访问新站点: https://www.yidiankuaile.com/post/webpack-notes
特点:
静态资源
支持导入第三方工具
支持代码分割
支持模块热更新
安装
1.先全局安装webpack,再在项目目录安装
项目目录下
1
| npm install --save-dev webpack
|
直接使用webpack
1
| webpack hello.js hello.bundle.js
|
简单示例使用
安装必要的loader
1
| npm install css-loader style-loader --save-dev
|
1 2 3 4 5
| require ('./world.js') require('style-loader!css-loader!./style.css') function(){
}
|
1 2 3
| <body> <script src="hello.bundle.js"></script> </body>
|
使用webpack命令
Webpack命令的常用参数:
在命令行中绑定loader,
自动更新,打包,
显示打包过程,
显示打包模块,
显示为什么打包,
1
| webpack hello.js hello.bundle.js --module-bind 'css=style-loader!css-loader' --watch --progress --display-modules --display-reasons --colors
|
使用 webpack.config.js
单文件输入输出
1 2 3 4 5 6 7 8
| module.exports={ entry:'/src/script/main.js'
outfile:{ path:'./dist/js', filename:'bundle.js' } }
|
多文件输入输出
1 2 3 4 5 6 7 8 9 10
| module.exports={ entry:'/src/script/main.js'
outfile:{ path:'./dist/js', //占位符: name 表示原文件名,hash当前打包的hash,chunkhash表示每个打包文件的hash, filename:'[name]-[hash]-bundle.js' //filename:'[name]-[chunkhash]-bundle.js' } }
|
插件使用
安装使用插件 html-webpack-plugin,让js自动引入到html中
1
| npm install html-webpack-plugin --save-dev
|
webpack.config.js1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
| var htmlWebpckPlugin=require('html-webpack-plugin');
module.exports={ entry:{ main:'./src/script/main.js', a:'./src/script/a.js' }, output:{ path:'./dist/', filename:'js/[name]-[hash]-bundle.js', publicPath:'http://cdn.com/'
}, plugins:[ new htmlWebpckPlugin({ filename:'index-[hash].html', inhect:'head', template:'index.html', title:"webpck is good", minify:{ removeComments:true, collapseWhitespace:true } }) ] }
|
发表于
,并被添加「
webpack 」标签,最后修改于
本文链接:https://lidong.me/blog/webpack-notes/