npm install clean-webpack-plugin --save
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
module.exports = {
entry: "./src/js/main.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "build"),
},
module: {...},
plugins: [new CleanWebpackPlugin()],
};
npm install html-webpack-plugin --save
const HtmlWebpackPlugin = require("html-webpack-plugin");
module.exports = {
entry: "./src/js/main.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "build"),
},
module: {...},
plugins: [
new HtmlWebpackPlugin({
title: "LeBronChao Webpack",
template: "./public/index.html",
}),
],
};
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title><%= htmlWebpackPlugin.options.title %></title>
</head>
<body>
<h1>LeBronChao Webpack</h1>
</body>
</html>
用于定义全局常量
const { DefinePlugin } = require("webpack");
module.exports = {
entry: "./src/js/main.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "build"),
},
module: {...},
plugins: [
new DefinePlugin({
BASE_URL: "'./favicon.ico'",
}),
],
};
注意事项:
- 定义的变量赋值时若为字符串需嵌套字符串,若为变量在""内填写变量,如上。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="icon" href="<%= BASE_URL %>" />
</head>
<body>
<h1>LeBronChao Webpack</h1>
</body>
</html>
npm install copy-webpack-plugin --save
const CopyWebpackPlugin = require("copy-webpack-plugin");
module.exports = {
entry: "./src/js/main.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "build"),
},
module: {...},
plugins: [
new CopyWebpackPlugin({
patterns: [
{
from: "public",
// 可不写,默认到output
to: "build",
globOptions: {
ignore: ["**/index.html", "**/.DS_Store", "**/abc.txt"],
},
},
],
}),
],
};
webpack有两个非常重要的类Compiler和Compilation
他们通过注入插件的方式,来监听webpack的所有生命周期
插件的注入离不开各种各样的Hook
Hook来源于Tapable库
想自定义Plugin,先了解一个库Tapable
Tapable是官方编写和维护的一个库
Tapable是管理着需要的Hook,这些Hook可以应用到插件中
同步Sync
SyncHook
SyncBailHook
SyncWaterfallHook
SyncLoopHook
异步Async
以sync开头的为同步hook
以async开头的,两个事件处理回调,不会等待上一次处理回调结束后再执行下一次回调。
AsyncSeriesHook
AsyncSeriesBailHook
AsyncSeriresWaterfallHook
AsyncPrarllelHook
AsyncParallelBailHook
Paralle(并行)
Series(串行)
同步和异步的
其他的类别
baill:当有返回值时,就不会执行后续的事件触发了。
Loop:当返回值为true时,就会反复执行该事件,当返回值为undefined或者不返回内容时,退出事件
Waterfall:当返回值不为undefined时,会将这次返回的结果作为下次事件的第一个参数
Parallel:并行,会同时执行事件处理回调的Hook
Series:串行,会等待上一事件处理回调的Hook
2 . 注册Hook中的事件
3 . 触发事件
const {SyncWaterfallHook} = require("tapable")
class tapableTest{
constructor () {
this.hooks = {
syncHook:new SyncWaterfallHook(['name','age'])
}
this.hooks.syncHook.tap("event1",(name, age) => {
console.log("event1", name, age);
return "event1"
})
this.hooks.syncHook.tap("event2",(name, age) => {
console.log("event2", name, age);
})
}
emit(){
this.hooks.syncHook.call("lebron", 21);
}
}
const index= new tapableTest()
index.emit()
// event1 lebron 21
// event2 event1 21
前端开发完成后,经常要打包上传代码。个人开发者一般会使用Nginx部署服务,每次上传代码太麻烦了,自己写个Plugin让他自动上传到Nginx文件夹吧。
const AutoUploadPlugin = require("../plugins/autoUploadPlugin")
plugins:[
new HtmlWebpackPlgin(),
new AutoUploadPlugin({
host:"xx.xx.xx.xx",
username:"root",
password:"xxxxxxx",
remotePath:"/test"
})
]
AutoUploadPlugin.js
借助node-ssh库完成远程系列操作
npm i node-ssh
Constructor
生成ssh对象
接收options参数-
每个Plugin都需要一个apply函数来注册插件
a . 通过compiler对象调用hooks注册事件
b . 通过compilation对象获取打包输出文件夹路径
c . 建立ssh连接
d . 删除远程服务器中原本的内容
e . 上传生成后的文件到服务器
f . 关闭ssh连接
g . 执行回调
const { NodeSSH } = require("node-ssh")
class AutoUploadPlugin {
constructor (options) {
this.ssh = new NodeSSH()
this.options = options
}
apply (compiler) {
// 使用文件生成后的钩子
compiler.hooks.afterEmit.tapAsync("AutoUploadPlugin", async (compilation, callback) => {
// 1. 获取输出的文件夹路径
const outputPath = compilation.outputOptions.path
// 2. 连接服务器(ssh)
await this.connectServer()
// 3. 删除原来目录中的内容
const serverDir = this.options.remotePath
await this.ssh.execCommand(`rm -rf ${serverDir}/*`)
// 4. 上传文件到服务器
await this.uploadFiles(outputPath, serverDir)
// 5. 关闭SSH
this.ssh.dispose();
callback()
})
}
async connectServer () {
await this.ssh.connect({
host: this.options.host,
username: this.options.username,
password: this.options.password
})
}
async uploadFiles (localPath, remotePath) {
const status = await this.ssh.putDirectory(localPath, remotePath, {
// 递归上传所有文件
recursive: true,
// 并发数
concurrency: 10
})
console.log("Upload " + status ? "成功" : "失败")
}
}
module.exports = AutoUploadPlugin
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8