1.0.0 • Published 3 years ago

webzip v1.0.0

Weekly downloads
6
License
ISC
Repository
github
Last release
3 years ago

WebZip

Get a file inside a zip url

npm i webzip

Usage

const webzip = require('webzip');

const zipUrl = 'https://accounts.clickbank.com/feeds/marketplace_feed_v2.xml.zip';
// file inside .zip
const file = 'marketplace_feed_v2.xml';

const products = webzip(zipUrl, file);

products.then(function (fileBuffer) {
  const content = fileBuffer.toString('utf8');
  console.log(content);
});