Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fritx/cross-unzip
Cross-platform 'native' unzip in Node.js
https://github.com/fritx/cross-unzip
cross unix unzip windows zip
Last synced: 2 months ago
JSON representation
Cross-platform 'native' unzip in Node.js
- Host: GitHub
- URL: https://github.com/fritx/cross-unzip
- Owner: fritx
- Created: 2016-04-27T15:08:37.000Z (over 8 years ago)
- Default Branch: dev
- Last Pushed: 2023-07-18T01:55:30.000Z (over 1 year ago)
- Last Synced: 2024-10-12T22:16:17.858Z (3 months ago)
- Topics: cross, unix, unzip, windows, zip
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/cross-unzip
- Size: 10.7 KB
- Stars: 17
- Watchers: 2
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cross-unzip
See also: [win-7zip](https://github.com/fritx/win-7zip), [feross/cross-zip](https://github.com/feross/cross-zip)
- [x] Tested on OSX
- [x] Tested on Windows
- [x] Zip compress/decompress
- [ ] Progress feedback```plain
$ npm install cross-unzip
$ npm install win-7zip # Windows support
``````js
let { zip, unzip } = require('cross-unzip')// extract files
unzip('some/archive.zip', 'some/dir', err => {
// done
})// compress files
zip('some/dir', 'some/archive.zip', err => {
// done
})
```