插件

插件是 webpack 的支柱。Webpack 本身就是基于相同的插件系统构建的,您在 webpack 配置中使用它!

它们还用于执行加载器无法执行的任何其他操作。Webpack 提供了许多此类插件

解剖

Webpack 插件是一个 JavaScript 对象,它具有一个apply 方法。此apply 方法由 webpack 编译器调用,从而可以访问整个编译生命周期。

ConsoleLogOnBuildWebpackPlugin.js

const pluginName = 'ConsoleLogOnBuildWebpackPlugin';

class ConsoleLogOnBuildWebpackPlugin {
  apply(compiler) {
    compiler.hooks.run.tap(pluginName, (compilation) => {
      console.log('The webpack build process is starting!');
    });
  }
}

module.exports = ConsoleLogOnBuildWebpackPlugin;

建议编译器钩子的 tap 方法的第一个参数应该是插件名称的焦糖化版本。建议为此使用常量,以便可以在所有钩子中重复使用它。

用法

由于插件可以接受参数/选项,因此您必须将new 实例传递给 webpack 配置中的plugins 属性。

根据您使用 webpack 的方式,有多种使用插件的方法。

配置

webpack.config.js

const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack'); //to access built-in plugins
const path = require('path');

module.exports = {
  entry: './path/to/my/entry/file.js',
  output: {
    filename: 'my-first-webpack.bundle.js',
    path: path.resolve(__dirname, 'dist'),
  },
  module: {
    rules: [
      {
        test: /\.(js|jsx)$/,
        use: 'babel-loader',
      },
    ],
  },
  plugins: [
    new webpack.ProgressPlugin(),
    new HtmlWebpackPlugin({ template: './src/index.html' }),
  ],
};

ProgressPlugin 用于自定义编译过程中进度报告的方式,HtmlWebpackPlugin 将使用 script 标签生成包含 my-first-webpack.bundle.js 文件的 HTML 文件。

Node API

使用 Node API 时,您也可以通过配置中的 plugins 属性传递插件。

some-node-script.js

const webpack = require('webpack'); //to access webpack runtime
const configuration = require('./webpack.config.js');

let compiler = webpack(configuration);

new webpack.ProgressPlugin().apply(compiler);

compiler.run(function (err, stats) {
  // ...
});

7 位贡献者

TheLarkInnjhnnsrouzbeh84johnstewMisterDevbyzykchenxsan