Skip to content

Instantly share code, notes, and snippets.

View Grigore147's full-sized avatar

Grigore Dutcovici Grigore147

View GitHub Profile
@Grigore147
Grigore147 / gist:5749039
Created June 10, 2013 14:19
Download and extract tarballs
var request = require('request');
var zlib = require('zlib');
var tar = require('tar');
var url = 'https://github.com/Shogun147/Katana/tarball/master';
var path = __dirname + '/katana';
request({ url: url }).pipe(zlib.createUnzip()).pipe(tar.Extract({ path: path }))
.on('end', function() {
console.log('Done!');
@Grigore147
Grigore147 / request.js
Created January 23, 2013 18:07
HTTP Response pause/resume
var Http = require('http');
var Fs = require('fs');
// some url to big video file
var url = 'url';
var path = 'save_path';
var downloaded = 0;
var percents = 0;
var size = 0;