You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
360 B
15 lines
360 B
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))
|
|
.on('done', function() {
|
|
console.log('Done!')
|
|
})
|