Skip to content

A utility for ungzipping + untaring a file from an url while it is being downloaded

Notifications You must be signed in to change notification settings

noodny/untar-request

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
}

About

A utility for ungzipping + untaring a file from an url while it is being downloaded

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published