- Notifications
You must be signed in to change notification settings - Fork3
Cross-platform 'native' unzip in Node.js
NotificationsYou must be signed in to change notification settings
fritx/cross-unzip
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
See also:win-7zip,feross/cross-zip
- Tested on OSX
- Tested on Windows
- Zip compress/decompress
- Progress feedback
$ npm install cross-unzip$ npm install win-7zip # Windows support
let{ zip, unzip}=require('cross-unzip')// extract filesunzip('some/archive.zip','some/dir',err=>{// done})// compress fileszip('some/dir','some/archive.zip',err=>{// done})