Gathering detailed insights and metrics for archiver-zip-encrypted
Gathering detailed insights and metrics for archiver-zip-encrypted
Gathering detailed insights and metrics for archiver-zip-encrypted
Gathering detailed insights and metrics for archiver-zip-encrypted
@fanthos/archiver-zip-encrypted-1
AES-256 and legacy Zip 2.0 encryption for Zip files
@techteamer/archiver-zip-encrypted
AES-256 and legacy Zip 2.0 encryption for Zip files
@os023/archiver-zip-encrypted
archiver-zip-encrypted-zip64
AES-256 and legacy Zip 2.0 encryption for Zip files
Plugin for archiver to create ZIP archives with password using either AES or legacy Zip 2.0 encryption
npm install archiver-zip-encrypted
Typescript
Module System
Min. Node Version
Node Version
NPM Version
94.5
Supply Chain
80.9
Quality
74.1
Maintenance
100
Vulnerability
99.3
License
JavaScript (100%)
Total Downloads
5,731,108
Last Day
1,346
Last Week
59,536
Last Month
245,888
Last Year
1,884,512
MIT License
61 Stars
84 Commits
5 Forks
1 Watchers
7 Branches
3 Contributors
Updated on Jun 06, 2025
Minified
Minified + Gzipped
Latest Version
2.0.0
Package Id
archiver-zip-encrypted@2.0.0
Unpacked Size
27.30 kB
Size
8.47 kB
File Count
14
NPM Version
6.14.14
Node Version
14.17.4
Published on
Mar 23, 2024
Cumulative downloads
Total Downloads
Last Day
26.6%
1,346
Compared to previous day
Last Week
-7.7%
59,536
Compared to previous week
Last Month
24%
245,888
Compared to previous month
Last Year
19.3%
1,884,512
Compared to previous year
AES-256 and legacy Zip 2.0 encryption for Zip files.
Plugin for archiver that adds encryption capabilities to Zip compression. Pure JS, no external zip software needed.
1npm install archiver-zip-encrypted --save
1const archiver = require('archiver'); 2 3// register format for archiver 4// note: only do it once per Node.js process/application, as duplicate registration will throw an error 5archiver.registerFormat('zip-encrypted', require("archiver-zip-encrypted")); 6 7// create archive and specify method of encryption and password 8let archive = archiver.create('zip-encrypted', {zlib: {level: 8}, encryptionMethod: 'aes256', password: '123'}); 9archive.append('File contents', {name: 'file.name'}) 10// ... add contents to archive as usual using archiver
Plugin supports 2 encryption methods:
For more information on these encryption methods and its drawbacks in particular see WinZip documentation. It's worth noting that neither of these encryption methods encrypt file names and their metainformation, such as original size, filesystem dates, permissions etc.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 2/29 approved changesets -- score normalized to 0
Reason
dangerous workflow patterns detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
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
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
13 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-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