2.0.2 • Published 9 years ago

untar-request v2.0.2

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

bitHound Score npm

About

This module allows you to download a .tar.gz archive from a url, and decompress it on the fly by utilizing nodejs streams, finally writing it to a selected directory.

Usage

var untarRequest = require('untar-request');

var options = {
     url: 'http://example.com/some-archive.tar.gz',
     dest: './'
}

untarRequest(options, function() {
    console.log('done');
});

You may want to use options.dmode and options.fmode to set appropriate access modes for directories and files, e.g.:

var options = {
     url: 'http://example.com/some-archive.tar.gz',
     dest: './',
     dmode: 0555,
     fmode: 0444
}
2.0.2

9 years ago

2.0.1

9 years ago

2.0.0

9 years ago

1.0.0

9 years ago