Gathering detailed insights and metrics for @eklingen/vinyl-stream-manifest
Gathering detailed insights and metrics for @eklingen/vinyl-stream-manifest
Gathering detailed insights and metrics for @eklingen/vinyl-stream-manifest
Gathering detailed insights and metrics for @eklingen/vinyl-stream-manifest
npm install @eklingen/vinyl-stream-manifest
Typescript
Module System
Min. Node Version
67.4
Supply Chain
84.6
Quality
75.6
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
3,577
Last Day
6
Last Week
18
Last Month
47
Last Year
518
13 Commits
2 Watching
1 Branches
1 Contributors
Minified
Minified + Gzipped
Latest Version
2.0.1
Package Id
@eklingen/vinyl-stream-manifest@2.0.1
Unpacked Size
8.34 kB
Size
3.43 kB
File Count
6
Cumulative downloads
Total Downloads
Last day
0%
6
Compared to previous day
Last week
50%
18
Compared to previous week
Last month
571.4%
47
Compared to previous month
Last year
-43.1%
518
Compared to previous year
Calculate hashes, rename files in the stream, and write the results to a manifest.json
file for consumption by, for example, a webserver. Also includes a function to take the manifest values and use them as string replacements in a stream - such as templates.
NOTE: No tests have been written yet!
yarn install
. Or npm install
. Or just copy the files to your own project.
To add a content hash to files, and write the results to a manifest.json
file:
1const { writeToManifest } = require('@eklingen/vinyl-stream-manifest') 2return stream.pipe(writeToManifest('build/static/manifest.json'))
To replace occurances of unhashed filenames with the hashed filenames from a manifest.json
file:
1const { replaceByManifest } = require('@eklingen/vinyl-stream-manifest') 2return stream.pipe(replaceByManifest('build/static/manifest.json'))
An example of a manifest.json
:
1{ 2 "scripts/base.js": "scripts/base.657a510220605b17ae0177107375884f7f9ff796.js", 3 "scripts/main.js": "scripts/main.1ca16ef0071daa93373291c9febac0e0526f6b0d.js", 4 "scripts/base.js.map": "scripts/base.657a510220605b17ae0177107375884f7f9ff796.js.map", 5 "scripts/main.js.map": "scripts/main.1ca16ef0071daa93373291c9febac0e0526f6b0d.js.map", 6 "stylesheets/main.css": "stylesheets/main.4f1aec7e4c3ff593e2b0ee60c0d4e249e685011e.css" 7}
You have the following options:
streamDestination
This is necessary if the files do not reside in the same location as the manifest.json
file. Since the files in the stream haven't been written yet, they do not contain a path (gulp.dest()
adds that at the end). Specifying the destination allows the relative paths to resolve correctly. This does assume that all files in the current stream reside in (starting from) the same folder you specify, which is usually the case in a gulp stream.
For example, if the stream contains .js
files that reside in build/static/scripts
, while the manifest.json
will be written to build/static/manifest.json
, the usage would be like so:
1replaceByManifest('build/static/manifest.json', { streamDestination: 'build/static/scripts' })
NOTE: If (some of) the files in the stream do contain a path, then they will resolve correctly without specifying a streamDestination.
None.
Copyright (c) 2021 Elco Klingen. MIT License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
4 existing vulnerabilities detected
Details
Reason
Found 0/13 approved changesets -- score normalized to 0
Reason
project is archived
Details
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 2024-12-23
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