0.1.0 • Published 7 years ago

package-to-zip v0.1.0

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

package-to-zip

Convert an npm package tarball to a zip file

Usage

import fs from 'fs';
import package2zip from 'package-to-zip';

package2zip(fs.createReadStream('./package.tgz'), { distOnly: true })
    .pipe(fs.createWriteStream('./dist.zip'))
    .on('finish', console.log('Done!');

Install

npm install package-to-zip --save

Test

npm install
npm test
0.1.0

7 years ago