This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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!'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
NewerOlder