Measure + analyse the speed of your webpack loaders and plugins (Compatible with Webpack v5)
npm install speed-measure-webpack-v5-pluginThe credit for this package goes miles and miles to Stephen Cook - Speed Measure Webpack Plugin. The only work of mine is to migrate it to Webpack v5 and adding an option to exclude certain plugins in the wrap config.
bash
npm install --save-dev speed-measure-webpack-v5-plugin
`
or
`bash
yarn add -D speed-measure-webpack-v5-plugin
`
Requirements
SMP requires at least Node v6. But otherwise, accepts all webpack versions (1, 2, 3, and 4).
Usage
Change your webpack config from
`javascript
const webpackConfig = {
plugins: [new MyPlugin(), new MyOtherPlugin()],
};
`
to
`javascript
const SpeedMeasurePlugin = require("speed-measure-webpack-v5-plugin");
const smp = new SpeedMeasurePlugin();
const webpackConfig = smp.wrap({
plugins: [new MyPlugin(), new MyOtherPlugin()],
});
`
and you're done! SMP will now be printing timing output to the console by default.
But if you choose to integrate it within your script all the time, you may face the following:
- The build fails at the end (in case of prod)
- Some plugin features such as HMR in react don't work.
To resolve this, you would have to exclude these plugins from the meassure (Learn more about why it happens):
Just you can do by passing an optional array parameter of the name of the plugin class to exclude.
For example, to exlcude, ReactRefreshPlugin and MiniCSSExtractPlugin send the list as:
`javascript
smp.wrap(config, ['ReactRefreshPlugin', 'MiniCSSExtractPlugin'])
`
And voila! You are now free to use this in production.
Check out the examples folder for some more examples.
Options
Pass these into the constructor, as an object:
`javascript
const smp = new SpeedMeasurePlugin(options);
`
$3
Type: Boolean
Default: false
If truthy, this plugin does nothing at all.
{ disable: !process.env.MEASURE } allows opt-in measurements with MEASURE=true npm run build.
$3
Type: String|Function
Default: "human"
Determines in what format this plugin prints its measurements
- "json" - produces a JSON blob
- "human" - produces a human readable output
- "humanVerbose" - produces a more verbose version of the human readable output
- If a function, it will call the function with the JSON blob, and output the response
$3
Type: String|Function
Default: console.log
- If a string, it specifies the path to a file to output to.
- If a function, it will call the function with the output as the first parameter
$3
Type: Object
Default: {}
By default, SMP derives plugin names through plugin.constructor.name. For some
plugins this doesn't work (or you may want to override this default). This option
takes an object of pluginName: PluginConstructor, e.g.
`javascript
const uglify = new UglifyJSPlugin();
const smp = new SpeedMeasurePlugin({
pluginNames: {
customUglifyName: uglify,
},
});
const webpackConfig = smp.wrap({
plugins: [uglify],
});
`
$3
Type: Number
Default: 0
You can configure SMP to include the files that take the most time per loader, when using outputFormat: 'humanVerbose'. E.g., to show the top 10 files per loader:
`javascript
const smp = new SpeedMeasurePlugin({
outputFormat: "humanVerbose",
loaderTopFiles: 10,
});
`
$3
Type: Object
Default: {}
This option gives you a comparison over time of the module count and time spent, per loader. This option provides more data when outputFormat: "humanVerbose".
Given a required filePath to store the build information, this option allows you to compare differences to your codebase over time. E.g.
`javascript
const smp = new SpeedMeasurePlugin({
compareLoadersBuild: {
filePath: "./buildInfo.json",
},
});
`
$3
Type: Boolean
Default: false
By default, SMP measures loaders in groups. If truthy, this plugin will give per-loader timing information.
This flag is _experimental_. Some loaders will have inaccurate results:
- loaders using separate processes (e.g. thread-loader)
- loaders emitting file output (e.g. file-loader)
We will find solutions to these issues before removing the _(experimental)_ flag on this option.
What Happens under the Hood?
Loader times are simple to measure, we can directly consume the callback and measure the before and after time.
For Plugins, it's a bit tricky. We have to wrap each Plugin into a Proxy Plugin which has the functions to get the before and after times. Which is why, we wrap the configuration.
A problem that the users faced in the original speed-measure-webpack-plugin, is that plugins such as MiniCSSExtractPlugin` throw an exception when they are invoked not by the original class, but a proxy - this results in build failure. (Issues like these for example)