Skip to content

Instantly share code, notes, and snippets.

@mdarnall
Created June 28, 2012 00:17
Show Gist options
  • Save mdarnall/3007798 to your computer and use it in GitHub Desktop.
Save mdarnall/3007798 to your computer and use it in GitHub Desktop.
// Print all of the news items on hackernews
var jsdom = require('jsdom');
jsdom.env({
html: 'http://news.ycombinator.com/',
scripts: [
'http://code.jquery.com/jquery-1.5.min.js'
],
done: function(errors, window) {
var $ = window.$;
console.log('HN Links');
$('td.title:not(:last) a').each(function() {
console.log(' -', $(this).text());
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment