Gathering detailed insights and metrics for gulp-vinyl-zip
Gathering detailed insights and metrics for gulp-vinyl-zip
Gathering detailed insights and metrics for gulp-vinyl-zip
Gathering detailed insights and metrics for gulp-vinyl-zip
npm install gulp-vinyl-zip
Typescript
Module System
Min. Node Version
Node Version
NPM Version
93.2
Supply Chain
90.9
Quality
70.6
Maintenance
100
Vulnerability
98.2
License
JavaScript (100%)
Total Downloads
9,535,107
Last Day
1,368
Last Week
31,866
Last Month
162,270
Last Year
1,149,809
22 Stars
145 Commits
7 Forks
2 Watchers
1 Branches
6 Contributors
Updated on May 06, 2024
Minified
Minified + Gzipped
Latest Version
2.5.0
Package Id
gulp-vinyl-zip@2.5.0
Size
5.40 kB
NPM Version
6.14.13
Node Version
14.17.1
Published on
Jun 30, 2021
Cumulative downloads
Total Downloads
Last Day
-50.8%
1,368
Compared to previous day
Last Week
-49.3%
31,866
Compared to previous week
Last Month
3.5%
162,270
Compared to previous month
Last Year
-11.6%
1,149,809
Compared to previous year
A library for creating and extracting ZIP archives from/to streams.
Archive → Archive
1var gulp = require('gulp'); 2var zip = require('gulp-vinyl-zip'); 3 4gulp.task('default', function () { 5 return zip.src('src.zip') 6 .pipe(/* knock yourself out */) 7 .pipe(zip.dest('out.zip')); 8});
or
1var gulp = require('gulp'); 2var zip = require('gulp-vinyl-zip'); 3 4gulp.task('default', function () { 5 return gulp.src('src.zip') 6 .pipe(zip.src()) 7 .pipe(/* knock yourself out */) 8 .pipe(zip.dest('out.zip')); 9});
Archive → File System
1var gulp = require('gulp'); 2var zip = require('gulp-vinyl-zip'); 3 4gulp.task('default', function () { 5 return zip.src('src.zip') 6 .pipe(/* knock yourself out */) 7 .pipe(gulp.dest('out')); 8});
File System → Archive
1var gulp = require('gulp'); 2var zip = require('gulp-vinyl-zip'); 3 4gulp.task('default', function () { 5 return gulp.src('src/**/*') 6 .pipe(/* knock yourself out */) 7 .pipe(zip.dest('out.zip')); 8});
File System → Archive Stream → Disk
1var gulp = require('gulp'); 2var zip = require('gulp-vinyl-zip').zip; // zip transform only 3 4gulp.task('default', function () { 5 return gulp.src('src/**/*') 6 .pipe(/* knock yourself out */) 7 .pipe(zip('out.zip')) 8 .pipe(/* knock your zip out */) 9 .pipe(gulp.dest('./')); 10});
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
9 existing vulnerabilities detected
Details
Reason
Found 1/13 approved changesets -- score normalized to 0
Reason
project is archived
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
detected GitHub workflow tokens with excessive permissions
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
license file not detected
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
Score
Last Scanned on 2025-06-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