Gathering detailed insights and metrics for gulp-tap
Gathering detailed insights and metrics for gulp-tap
Easily tap into a gulp pipeline without creating a plugin.
npm install gulp-tap
Typescript
Module System
Node Version
NPM Version
CoffeeScript (97.41%)
Makefile (1.84%)
JavaScript (0.76%)
Total Downloads
22,087,417
Last Day
2,765
Last Week
18,734
Last Month
191,314
Last Year
2,678,583
152 Stars
66 Commits
12 Forks
6 Watching
11 Branches
8 Contributors
Minified
Minified + Gzipped
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
Publised On
19 Aug 2019
Cumulative downloads
Total Downloads
Last day
-18.2%
2,765
Compared to previous day
Last week
-52.4%
18,734
Compared to previous week
Last month
-17.6%
191,314
Compared to previous month
Last year
-16.7%
2,678,583
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
30 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-12-30
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