Gathering detailed insights and metrics for webpack-manifest-extra-plugin
Gathering detailed insights and metrics for webpack-manifest-extra-plugin
Gathering detailed insights and metrics for webpack-manifest-extra-plugin
Gathering detailed insights and metrics for webpack-manifest-extra-plugin
manifest.json generator can be used not only include all emitted assets but also in multiply compilation cases
npm install webpack-manifest-extra-plugin
Typescript
Module System
Node Version
NPM Version
JavaScript (99.84%)
CSS (0.16%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
29 Commits
1 Watchers
2 Branches
1 Contributors
Updated on Jan 30, 2018
Latest Version
0.1.4
Package Id
webpack-manifest-extra-plugin@0.1.4
Unpacked Size
383.39 kB
Size
135.43 kB
File Count
23
NPM Version
5.6.0
Node Version
9.0.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
webpack-manifest-plugin
is fine? why another manifest-plugin?
after every emit and done,this plugin will find the manifest.json in dist folder,if already has,it will merge old manifest and new manifest to a final file,and you can modify it just by transform
function
install
1yarn add webpack-manifest-extra-plugin -D 2# or 3npm install webpack-manifest-extra-plugin -D
use
1// webpack.config.js 2const WebpackManifestExtraPlugin = require('webpack-manifest-extra-plugin') 3{ 4 //... 5 plugins:[ 6 new WebpackManifestExtraPlugin({ 7 filename:'manifest.json' // default -> manifest.json, 8 verbose: true // default -> true, 9 publicPath:'/' // default -> webpack's publicPath config 10 transform(manifest){ // manifest.json object && webpack's statsJson object 11 // ... your transforms 12 return manifest // return 13 } 14 }) 15 ] 16 //... 17}
use in multiply compilation in this example two compilation are all use the default same filename 'manifest.json', so plugin will merge it to one final file
1// webpack.config.js 2[ 3 // first 4 { 5 // ... 6 plugins: [new WebpackManifestExtraPlugin()] 7 // ... 8 }, 9 // second 10 { 11 //... 12 plugins: [new WebpackManifestExtraPlugin()] 13 //... 14 } 15]
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/29 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
101 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More