Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
custom-module-ids-webpack-plugin
Advanced tools
Absolute control over module IDs in webpack bundles
Absolute control over module IDs in webpack bundles. Should support webpack versions 3 and 4 at least. Feel free to make a PR to support earlier versions.
npm install custom-module-ids-webpack-plugin --save-dev
or yarn equivalent
yarn add custom-module-ids-webpack-plugin --dev
Simplest use case would look like:
var CustomModuleIdsPlugin = require('custom-module-ids-webpack-plugin');
...
plugins: [
...
new CustomModuleIdsPlugin({
idFunction: function(libIdent, module) {
...
}
})
...
]
but in truth there's no limit to how complex the idFunction can get.
Name | Type | Default | Description |
---|---|---|---|
idFunction | {Function<(libIdent: String, module: Object) -> {primtive}>} | Required. Function used to generate module IDs. The return will be used as module ID and should be a valid object key. libIdent argument is generated by calling module.libIdent() and should usually be path to the module file relative to the context. The second argument is a reference to the module object in case more info than just libIdent is needed. | |
context | {String} | undefined | Context path relative to which libIdent will be generated. If undefined, context from webpack config will be used. |
Use it with care. The plugin can be used to solve all kinds of issues not covered by more specific module id plugins but it's also extremely easy to break your bundles by not assigning unique IDs to modules.
FAQs
Absolute control over module IDs in webpack bundles
The npm package custom-module-ids-webpack-plugin receives a total of 91 weekly downloads. As such, custom-module-ids-webpack-plugin popularity was classified as not popular.
We found that custom-module-ids-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.