top-programming-news
v2.0.0
Published
Get the top entries from Hacker News and r/programming
Downloads
5
Maintainers
Readme
top-programming-news
Get the top entries from Hacker News and r/programming
usage
$ yarn add top-programming-news
$ # or
$ npm i --save top-programming-news
$ node
The default limit is 30, the number of entries on the Hacker News front page.
> const news = require('top-programming-news')
undefined
> news.both(1).then(console.log)
Promise { <pending> }
> [ [ { id: 13840785,
title: 'Planet Explorer Beta',
url: 'https://www.planet.com/',
comments: 'https://news.ycombinator.com/item?id=13840785' } ],
[ { id: '5ym1fv',
title: 'Password Rules Are Bullshit',
url: 'https://blog.codinghorror.com/password-rules-are-bullshit/',
comments: 'https://www.reddit.com/r/programming/comments/5ym1fv/password_rules_are_bullshit/' } ] ]
> news.hackernews(1).then(console.log)
Promise { <pending> }
> [ { id: 13840785,
title: 'Planet Explorer Beta',
url: 'https://www.planet.com/',
comments: 'https://news.ycombinator.com/item?id=13840785' } ]
> news.reddit(1).then(console.log)
Promise { <pending> }
> [ { id: '5ym1fv',
title: 'Password Rules Are Bullshit',
url: 'https://blog.codinghorror.com/password-rules-are-bullshit/',
comments: 'https://www.reddit.com/r/programming/comments/5ym1fv/password_rules_are_bullshit/' } ]
License
MIT