Gathering detailed insights and metrics for gulp-tap
Gathering detailed insights and metrics for gulp-tap
Gathering detailed insights and metrics for gulp-tap
Gathering detailed insights and metrics for gulp-tap
npm install gulp-tap
Typescript
Module System
Node Version
NPM Version
CoffeeScript (97.41%)
Makefile (1.84%)
JavaScript (0.76%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
152 Stars
66 Commits
12 Forks
5 Watchers
11 Branches
8 Contributors
Updated on Aug 12, 2024
Latest Version
2.0.0
Package Id
gulp-tap@2.0.0
Size
5.07 kB
NPM Version
6.10.3
Node Version
12.8.0
Published on
Aug 19, 2019
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
1
4
Easily tap into a pipeline.
npm install gulp-tap --save-dev
Some filters like gulp-coffee
process all files. What if you want to process
all JS and Coffee files in a single pipeline. Use tap
to filter out .coffee
files and process them through the coffee
filter and let JavaScript files
pass through.
1gulp.src("src/**/*.{coffee,js}") 2 .pipe(tap(function(file, t) { 3 if (path.extname(file.path) === '.coffee') { 4 return t.through(coffee, []); 5 } 6 })) 7 .pipe(gulp.dest('build'));
What if you want to change content like add a header? No need for a separate filter, just change the content.
1tap(function(file) { 2 file.contents = Buffer.concat([ 3 new Buffer('HEADER'), 4 file.contents 5 ]); 6});
If you do not return a stream, tap forwards your changes.
See Wiki for more examples.
The MIT License (MIT)
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/15 approved changesets -- score normalized to 1
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
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
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
33 existing vulnerabilities detected
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