0.0.0 • Published 6 years ago

callbag-reddit v0.0.0

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

callbag-reddit

Reddit push streams for Callbag.

Install

npm i callbag-reddit

Usage

fromReddit(r)

Streams the pages of a subreddit.

const { pipe, map, forEach } = require('callbag-basics')
const { fromReddit } = require('callbag-reddit')

pipe(
  fromReddit('midlyinteresting'),
  map(x => x.data.url),
  forEach(console.log)
)