hacker-news-parser
Parses the insanely shitty html of hacker news comments into json
example
var hn = ;;
api
hn.parse(html)
parses the html of a hacker news post returns:
var result = comments: comment /*array of Comment objects*/ more: moreLink /*MoreLink object - null if there is no next page*/
note: moreLink will be null if there is no 'more' link at the bottom
Comment
represents a single comment, accessible via the result returned from hn.parse
var comment = body: /*raw html body of the comment*/ date: /*date object (UTC) of when the comment was posted*/ href: /*the uri to the comment*/ comments: /*array of child Comments*/
MoreLink
represents a link to the next page (if there is a next page), accessible via the result returned from hn.parse
var moreLink = href: /*the uri to the next page of comments*/
why?
Because hacker news has no public API, and the other modules did too much and/or didn't have test suites.