1.1.0 • Published 5 years ago
redddit v1.1.0
redddit
Simple Reddit API, no authentication needed!
sample code
const redddit = require('./index.js');
redddit.topPosts("videos",function(err,res){
if (err !== null) {
console.log(err.code)
} else {
var post = res[0].data.permalink;
redddit.getPost(post, function(err,res) {
console.log(res.comments)
})
}
});