Skip to content

Instantly share code, notes, and snippets.

@marufsiddiqui
Created April 18, 2013 07:16
Show Gist options
  • Save marufsiddiqui/5410805 to your computer and use it in GitHub Desktop.
Save marufsiddiqui/5410805 to your computer and use it in GitHub Desktop.
Download images with node.js
function getImages(uri) {
var request = require('request');
var url = require('url');
var cheerio = require('cheerio');
path = require('path')
var fs = require('fs');
request(uri, function (error, response, body) {
if (!error && response.statusCode == 200) {
$ = cheerio.load(body)
imgs = $('img').toArray()
console.log("Downloading...")
imgs.forEach(function (img) {
//console.log(img.attribs.src)
process.stdout.write(".");
img_url = img.attribs.src
if (/^https?:\/\//.test(img_url)) {
img_name = path.basename(img_url)
request(img_url).pipe(fs.createWriteStream(img_name))
}
})
console.log("Done!")
}
})
}
getImages("http://imgur.com/gallery")
@swooningnico26
Copy link

no image save

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment