
Security News
Insecure Agents Podcast: Certified Patches, Supply Chain Security, and AI Agents
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.
@rushstack/webpack4-module-minifier-plugin
Advanced tools
This plugin splits minification of webpack compilations into smaller units.
npm install @rushstack/webpack4-module-minifier-plugin --save-dev
This Webpack plugin performs minification of production assets on a per-module basis, rather than minifying an entire chunk at a time. It issues async calls to the minifier for each unique module and each unique set of chunk boilerplate (i.e. the webpack runtime and the structure of the module list). This improves minification time by:
[hash] and [contenthash] tokensThe plugin will do its best to update webpack hashes if changing the direct inputs (useSourceMap, compressAsyncImports or usePortableModules) to the plugin, but if altering the minifier property itself, you may need to use the output.hashSalt property to force a change to the hashes, especially if leverging the MessagePortMinifier or similar, since it has no direct access to the configuration of the minifier.
If running on node 10, you will need to ensure that the --experimental-workers flag is enabled.
const { ModuleMinifierPlugin, WorkerPoolMinifier } = require('@rushstack/webpack4-module-minifier-plugin');
// In your webpack options:
optimization: {
minimizer: [
new ModuleMinifierPlugin({
minifier: new WorkerPoolMinifier(),
// If not provided, the plugin will attempt to guess from `mode` and `devtool`.
// Providing it expressly gives better results
useSourceMap: true
})
]
}
You can also run the ModuleMinifierPlugin in a single-threaded configuration.
// webpack.config.js
const { ModuleMinifierPlugin, LocalMinifier } = require('@rushstack/webpack4-module-minifier-plugin');
// In your webpack options:
optimization: {
minimizer: [
new ModuleMinifierPlugin({
minifier: new LocalMinifier()
})
]
}
@rushstack/webpack4-module-minifier-plugin is part of the Rush Stack family of projects.
FAQs
This plugin splits minification of webpack compilations into smaller units.
The npm package @rushstack/webpack4-module-minifier-plugin receives a total of 1,146 weekly downloads. As such, @rushstack/webpack4-module-minifier-plugin popularity was classified as popular.
We found that @rushstack/webpack4-module-minifier-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.

Security News
The planned feature introduces a review step before releases go live, following the Shai-Hulud attacks and a rocky migration off classic tokens that disrupted maintainer workflows.