1.0.0 • Published 8 years ago

hacker-news-stream v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
8 years ago

hacker-news-stream Build Status

The Hacker News top stories but in Streams.

Install

$ npm install hacker-news-stream --save-dev

Usage

var hackerNews = require('hacker-news-stream');
var stream = hackerNews().getStory(11218732);

stream.on('data', function(res) {
  var story = JSON.parse(res);
  console.log(story);
});

Output:

$ node example/stream.js
{
  by: "schakraberty",
  descendants: 3,
  id: 11218732,
  kids: [11219282],
  score: 11,
  time: 1457029231,
  title: "How Duolingo got 110M users",
  type: "story",
  url: "https//www.techinasia.com/how-duolingo-got-110-million-users"
}

Methods

getStory(id)

Find one story by id and return a readable stream.

getStories()

Find all top stories ids and return a readable stream.

Contributions

Pull requests and issues will be appreciated.

License

MIT license

© 2016 José Luis Quintana