Skip to content

Instantly share code, notes, and snippets.

@dominykas
Forked from edvinasbartkus/hn.js
Last active August 29, 2015 13:56
Show Gist options
  • Save dominykas/8943293 to your computer and use it in GitHub Desktop.
Save dominykas/8943293 to your computer and use it in GitHub Desktop.
Parse('https://news.ycombinator.com/item?id=7216471')
.filter('#element:.comment')
.filter('#text')
.filter(function (text) {
return text !='reply'
})
.join('')
.then(function (comments) {
console.log(comments);
process.exit(0);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment