Package Exports
- node-zip
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-zip) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
node-zip
node-zip - Zip/Unzip files ported from JSZip
Installation
npm install node-zipUsage
Zip:
var zip = new require('node-zip')();
zip.file('test.file', 'hello there');
var data = zip.generate({base64:false,compression:'DEFLATE'});
console.log(data); // ugly dataUnzip:
var zip = new require('node-zip')(data, {base64: false, checkCRC32: true});
console.log(zip.files['test.file']); // hello thereYou can also load directly:
require('node-zip');
var zip = new JSZip(data, options)
...Write to a file (IMPORTANT: use binary encode, thanks to @Acek)
var fs = require("fs");
zip.file('test.txt', 'hello there');
var data = zip.generate({base64:false,compression:'DEFLATE'});
fs.writeFile('test.zip', data, 'binary');Manual
node-zip uses JSZip, please refer to their website for further information: http://stuartk.com/jszip/
License
MIT