stream-to-file.js 280 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 var fs = require('fs'), needle = require('./..'), path = require('path'); var url = process.argv[2] || 'http://www.google.com/images/errors/robot.png'; var file = path.basename(url); console.log('Downloading ' + file); needle.get(url).pipe(fs.createWriteStream(file));