Gathering detailed insights and metrics for webpack-fingerprint-json
Gathering detailed insights and metrics for webpack-fingerprint-json
npm install webpack-fingerprint-json
Typescript
Module System
63.7
Supply Chain
73.6
Quality
74.9
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
1,986
Last Day
1
Last Week
2
Last Month
7
Last Year
80
1 Stars
10 Commits
4 Watching
1 Branches
3 Contributors
Minified
Minified + Gzipped
Latest Version
0.1.0
Package Id
webpack-fingerprint-json@0.1.0
Size
1.80 kB
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
2
Compared to previous week
Last month
40%
7
Compared to previous month
Last year
-15.8%
80
Compared to previous year
No dependencies detected.
Writes a JSON file with build metadata
Based on Webpack Fingerprint but without traversing package dependencies
$ npm install --save webpack-fingerprint-json
1const WebpackFingerprint = require("webpack-fingerprint-json"); 2 3module.exports = { 4 plugins: [ 5 new WebpackFingerprint({ 6 filename: "fingerprint.json" // Default 7 }) 8 ] 9}
Will produce a file called fingerprint.json
with following info:
1{ 2 "date": "2017-09-17T15:56:50.468Z", 3}
You can provide additional information to also be stored in the resulting file. To do so, add additional fields to the configuration object.
1const WebpackFingerprint = require("webpack-fingerprint-json"); 2 3module.exports = { 4 plugins: [ 5 new WebpackFingerprint({ 6 json: { 7 build_number: process.env.CI_BUILD_NUMBER, 8 }, 9 }) 10 ] 11}
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/10 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
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-01-27
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