top-programming-news

2.0.0 • Public • Published

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

Package Sidebar

Install

npm i top-programming-news

Weekly Downloads

0

Version

2.0.0

License

MIT

Last publish

Collaborators

  • birgernass