1.0.0 • Published 8 years ago

ziparchive v1.0.0

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

ziparchive

JavaScript Library (native JS with alternate C++ implementation coming soon!) for dealing with ZIP archives.

To Install

npm i --save ziparchive

Usage

Right now, only extractFirstFile works (and only with DEFLATE compressed ZIPs).

const { extractFirstFile } = require('ziparchive');
extractFirstFile('./myfile.zip')
  .then(buffer => { ... do something ... })
  .catch(console.error);

License

Open Source under the MIT license. Contributions are welcome.