Go to file
2020-12-30 18:30:30 +00:00
.gitlab Add new directory 2020-12-30 18:30:30 +00:00
.gitignore Fix 2020-12-20 19:39:03 +00:00
.npmignore Fix 2020-12-20 19:39:03 +00:00
index.js Fix 2020-12-20 19:39:03 +00:00
license Fix 2020-12-20 19:39:03 +00:00
package-lock.json 1.0.0 2020-12-20 19:39:22 +00:00
package.json 1.0.0 2020-12-20 19:39:22 +00:00
readme.md Fix 2020-12-20 19:39:03 +00:00

random-bunny

Get a random image url from a subreddit of your choosing.

Install

$ npm install --save random-bunny

Usage

const randomBunny = require('random-bunny');

randomBunny('rabbits', 'new', (image, title) => {
    console.log(title + ": " + image);
});

API

randomBunny()

Returns a url and title for a random post to the callback. Accepts 3 arguments: subreddit, sortby ('new', 'hot', 'top'), callback(image, title)

Notes

License

MIT © Vylpes;