cpuprofile-webpack-plugin
Generate a cpuprofile for your webpack builds
The profile can be imported into GoogleChrome Dev Tools.
In addition a flame graph representation is generated:
β οΈ Warning β οΈ
This library is a work in progress, use at your own risk. But feel free to help out where you see bugs or incomplete things!
Usage
cli
webpack --plugin cpuprofile-webpack-plugin
dev-server
webpack-dev-server --plugin cpuprofile-webpack-plugin
webpack.config.js
const CpuProfilerWebpackPlugin = require('cpuprofile-webpack-plugin');
module.exports = {
plugins: [
new CpuProfilerWebpackPlugin()
]
}