Zip and Unzip for the windows command line and for use cross-platform in node
$ npm install --save infozip-bin
var execFile = require('child_process').execFile;
var infozip = require('infozip-bin');
execFile(infozip.unzip, ['file.zip', '-d dest'], function (err) {
console.log('Unzip successful');
});$ npm install --global infozip-bin
$ zip --help
$ unzip --help
MIT, BSD © wilsonwc