Gathering detailed insights and metrics for @trippel/archiver-promise
Gathering detailed insights and metrics for @trippel/archiver-promise
npm install @trippel/archiver-promise
Typescript
Module System
65.1
Supply Chain
74
Quality
72.3
Maintenance
100
Vulnerability
97
License
JavaScript (100%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
12,578
Last Day
1
Last Week
1
Last Month
13
Last Year
5,008
MIT License
2 Stars
7 Commits
7 Forks
4 Watchers
1 Branches
2 Contributors
Updated on Feb 09, 2025
Minified
Minified + Gzipped
Latest Version
1.0.3
Package Id
@trippel/archiver-promise@1.0.3
Unpacked Size
4.04 kB
Size
1.95 kB
File Count
7
Cumulative downloads
Total Downloads
Last Day
0%
1
Compared to previous day
Last Week
0%
1
Compared to previous week
Last Month
-18.8%
13
Compared to previous month
Last Year
-26.4%
5,008
Compared to previous year
1
Promise wrapper for archiver
1 2var archiver = require('archiver-promise'); 3 4var archive = archiver('path/to/file.zip',{ 5 store: true 6 // more options https://archiverjs.com/docs/ 7}); 8 9// append a file from stream 10var file1 = __dirname + '/file1.txt'; 11archive.append(fs.createReadStream(file1), { name: 'file1.txt' }); 12 13// append a file from string 14archive.append('string cheese!', { name: 'file2.txt' }); 15 16// append a file from buffer 17var buffer3 = new Buffer('buff it!'); 18archive.append(buffer3, { name: 'file3.txt' }); 19 20// append a file 21archive.file('file1.txt', { name: 'file4.txt' }); 22 23// append files from a directory 24archive.directory('subdir/'); 25 26// append files from a glob pattern 27archive.glob('subdir/*.txt'); 28 29// finalize the archive 30archive.finalize().then(function(){ 31 console.log('done'); 32}); 33
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 2/4 approved changesets -- score normalized to 5
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
Score
Last Scanned on 2025-03-10
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