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
Provide a manifest.json for consumption by, for example, a webserver.
npm install @eklingen/vinyl-stream-manifest
Typescript
Module System
Min. Node Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
13 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Apr 29, 2024
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%
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
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
5 existing vulnerabilities detected
Details
Reason
Found 0/13 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
project is archived
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-07-07
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