Skip to content

Instantly share code, notes, and snippets.

@alaingilbert
Created September 14, 2011 20:24
Show Gist options
  • Save alaingilbert/1217676 to your computer and use it in GitHub Desktop.
Save alaingilbert/1217676 to your computer and use it in GitHub Desktop.
Nodejs Crawler
// Intallation:
// npm install jsdom jquery
var jsdom = require('jsdom');
jsdom.env('http://google.ca/', null, function (err, window) {
$ = require('jquery').create(window);
$('a').each(function () {
console.log($(this).attr('href'), ' ---> ', $(this).text());
});
});
// http://www.google.ca/webhp?hl=en&tab=ww ---> Web
// http://www.google.ca/imghp?hl=en&tab=wi ---> Images
// http://video.google.ca/?hl=en&tab=wv ---> Videos
// http://maps.google.ca/maps?hl=en&tab=wl ---> Maps
// http://news.google.ca/nwshp?hl=en&tab=wn ---> News
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment