Utils to process zip file
npm install ziputil --save
const ziputil = require('ziputil');
const urls = [
'http://www.example.com/x.html',
'http://www.example.com/y.png'
]
ziputil.zipRemote(
urls, //remote file urls
process.cwd() //zip file save path
);
npm install mocha -g #install mocha globally
npm test #run tests