1.2.0 • Published 8 years ago

redd v1.2.0

Weekly downloads
12
License
ISC
Repository
github
Last release
8 years ago

Redd

Grab a subreddit's posts

Install

$ npm install redd

Usage

const redd = require('redd')
const subreddit = 'programming'
redd(subreddit, function (err, posts) {
  if (err) {
    return handleError(err)
  }
  console.log(posts.map(function (post) {
    return post.title
  })
})

API

redd(subreddit, callback)

subreddit

Type: string

URL slug for desired subreddit

callback

Type: function

Arg1: err

Arg2: array of post ojbects

Licence

MIT © Ben Evans

1.2.0

8 years ago

1.1.3

9 years ago

1.1.2

9 years ago

1.1.1

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago