0.2.0 • Published 7 years ago

node-targz v0.2.0

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

Simple gzip compression and decompression utility for Node.js


Installation

$ npm install node-targz

Example

var tarGzip = require('node-targz');

tarGzip.compress({
    source: '../example',
    destination: '../example.tar.gz',
    level: 6, // optional
    memLevel: 6, // optional
    options: { // options from https://github.com/mafintosh/tar-fs
        entries: ['test.txt']
    }
}, function () {
    tarGzip.decompress({
        source: '../example.tar.gz',
        destination: './unpack-example'
    }, function () {
        console.log('done');
    });
});

Contributors

License

MIT