Webpack4教程 - 第三部分,如何使用插件
转载请注明出处:,葡萄城为开发者提供专业的开发工具、解决方案和服务,赋能开发者。
原文出处:https://wanago.io/2018/07/23/webpack-4-course-part-three-working-with-plugins/
大家好!今天我们介绍插件这个概念。插件与loader的不同之处在于它能完成更复杂的任务。基本上,loader做不了的其他事情,就可以用插件来做。loader往往作用于某种特定类型的文件,而插件则更加通用。这次,我们来学习如何使用插件,看看它解决了什么问题。本文会涉及一些日常用例,比如,生成链接了所有资源的html,以及把css抽取为单独的文件。
webpack 4教程 - 第三部分 如何使用插件
使用插件最基本的方法是把它们放在配置文件中的plugins属性下。你需要调用new操作符创建一个插件的实例。
若想知道更多关于new关键字和原型的,请查看原型,es6 class背后的大哥。
html-webpack-plugin
手动的把所有javascript文件添加到html里是件很繁重的事情。幸好你不必那样做!这有一个非常有用的插件htmlwebpackplugin。
npm install html-webpack-plugin
它使用起来很方便:
// webpack.config.js
const htmlwebpackplugin = require('html-webpack-plugin');
module.exports = {
plugins: [
new htmlwebpackplugin()
]
};
它将会为我们在dist文件夹下面创建index.html文件。我们的javascript文件会以链接形式插入在<body>标签后面。
你需要自己追踪插入html的文件,而当它们变多时,这就很繁琐了。此插件则简化了这件事情。
另一件值得注意的重要事情就是,你的外链文件名可能会因为打包时使用哈希而改变。这就让htmlwebpackplugin更加有用了,因为你不需要手动追踪那些文件名。这个机制被用来应对浏览器的缓存。我们会在后面的课程讨论这个话题。
给插件传递配置
你可以给插件传递更多的配置。下面是一个为htmlwebpackplugin传入一个html模板的例子:
// webpack.config.js
const htmlwebpackplugin = require('html-webpack-plugin');
module.exports = {
plugins: [
new htmlwebpackplugin({template: './src/index.html'})
]
};
有了它,插件就不再使用默认的html文件,而会使用你提供给它的那个。 可以在看到更多的配置项。
把同一个插件使用多次
你可能会好奇,为什么我们每次使用插件,都要用new新建一个实例。这是因为你能够不止一次地使用同一个插件。
当创建多页面应用时,你可能需要不止一个html模板文件。
如果你想了解更多关于entry和output的内容,以及如何使用它们创建多文件应用,可参考我们的。
这可以通过多次使用htmlwebpackplugin来实现。
// webpack.config.js
const htmlwebpackplugin = require('html-webpack-plugin');
const path = require('path');
module.exports = {
entry: {
one: './src/one.js',
two: './src/two.js',
},
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'dist')
},
plugins: [
new htmlwebpackplugin({
filename: 'one.html',
template: './src/one.html',
chunks: ['one']
}),
new htmlwebpackplugin({
filename: 'two.html',
template: './src/two.html',
chunks: ['two']
})
]
};
插件的实例,会基于chunks数组对入口点(entry point)进行匹配。根据上面的配置运行webpack,会得到:one.html,tow.html,one.bundle.js,two.bundle.js。
插件和loader并用
在之前的教程里,我们把css-loader和style-loader结合起来,并把输出的css代码插入<style>标签。你可能倾向于输出真正的css的文件给用户。如果那样的话,需要使用mini-css-extract-plugin。
在过去,我们曾使用 extracttextwebpackplugin 来做这件事情。但从webpack 4 开始就不应该再使用它了。若想了解更多,参见。
这里演示了怎么做:
npm install mini-css-extract-plugin
const htmlwebpackplugin = require('html-webpack-plugin');
const minicssextractplugin = require("mini-css-extract-plugin");
module.exports = {
entry: './src/style.js',
module: {
rules: [
{
test: /\.css$/,
use: [
minicssextractplugin.loader,
'css-loader'
]
}
]
},
plugins: [
new htmlwebpackplugin(),
new minicssextractplugin()
]
}
由于使用了htmlwepbackplugin,自动生成的css文件被插入到html中。你会得到像下面这样的输出:
<!-- index.html -->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>webpack app</title>
<link href="main.css" rel="stylesheet"></head>
<body>
<script type="text/javascript" src="main.js"></script></body>
</html>
以上面的配置运行webpack,每个包含css导入的javascript文件都将得到一个css输出文件。若想改变这种行为,需要使用splitchunksplugin,我们将会在另一个教程里学习它。你也可以在里找到操作说明。
总结
今天我们学习了什么是插件,及其基本使用方法。不仅如此,我们还学习了如何给插件传递配置项,以及如何将它们与loader一并使用。虽然这里只是一部分插件的用例,但其他插件的使用方法也是类似的。你可查看来寻找你需要的插件。你也可以使用搜索引擎去发现更多。webpack本身就是基于同样的一套插件系统来构建的,所以学习它们在底层是如何工作的会很有趣。我们将在以后讨论这些,届时去实现我们自己的插件。
上一篇: 初探diskstats