Installations
npm install @trippel/archiver-promise
Developer Guide
Typescript
No
Module System
CommonJS
Score
65.1
Supply Chain
74
Quality
72.3
Maintenance
100
Vulnerability
97
License
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
validate.email 🚀
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Developer
maichong
Download Statistics
Total Downloads
12,578
Last Day
1
Last Week
1
Last Month
13
Last Year
5,008
GitHub Statistics
MIT License
2 Stars
7 Commits
7 Forks
4 Watchers
1 Branches
2 Contributors
Updated on Feb 09, 2025
Bundle Size
237.79 kB
Minified
64.31 kB
Minified + Gzipped
Package Meta Information
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
Total Downloads
Cumulative downloads
Total Downloads
12,578
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
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
Dependencies
1
archiver-promise
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
- Info: project has a license file: LICENSE:0
- Info: FSF or OSI recognized license: MIT License: LICENSE:0
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
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
- Warn: 0 commits out of 5 are checked with a SAST tool
Score
3.7
/10
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