random-bunny/readme.md

60 lines
1.1 KiB
Markdown
Raw Normal View History

2020-12-20 19:39:03 +00:00
# random-bunny
2016-04-27 20:06:24 +01:00
2020-12-20 19:39:03 +00:00
> Get a random image url from a subreddit of your choosing.
2016-04-27 20:06:24 +01:00
## Install
2021-12-01 20:53:53 +00:00
```bash
npm install --save random-bunny
2016-04-27 20:06:24 +01:00
```
2021-12-01 20:53:53 +00:00
or if you're using yarn
2016-04-27 20:06:24 +01:00
2021-12-01 20:53:53 +00:00
```bash
yarn add random-bunny
```
2016-04-27 20:06:24 +01:00
2021-12-01 20:53:53 +00:00
## Usage
2016-04-27 20:06:24 +01:00
2021-12-01 20:53:53 +00:00
```ts
import randomBunny from "random-bunny";
2021-12-01 20:53:53 +00:00
// ... In an async function
const result = await randomBunny('rabbits', 'hot', 100);
console.log(result);
```
2016-04-27 20:06:24 +01:00
## API
2020-12-20 19:39:03 +00:00
### `randomBunny()`
2016-04-27 20:06:24 +01:00
2021-12-01 20:53:53 +00:00
Returns a `json string` for a random post. Accepts 3 arguments: `subreddit`, `sortby` ('new', 'hot', 'top'), `maxTries?` (default 100)
2021-03-01 18:15:51 +00:00
The json string which gets returned consists of:
- archived
- downs
- hidden
- permalink
- subreddit
- subredditSubscribers
- title
- ups
- url
2016-04-29 03:23:21 +01:00
2021-12-01 20:53:53 +00:00
`sortBy` will default to 'hot' if not given or invalid
2021-12-01 20:53:53 +00:00
`maxTries` prevents the script from rerolling too many times. The script rerolls the randomiser if the post its given doesn't contain an image. Default 100.
2016-04-27 20:12:06 +01:00
## Notes
* Node 4 or newer.
2020-12-20 19:39:03 +00:00
* based upon [Random Puppy](https://github.com/dylang/random-puppy)
## Links
2021-12-01 20:53:53 +00:00
* Discord: [Server Link](https://vylpes.xyz/discord)
2016-04-27 20:06:24 +01:00
## License
2021-12-01 20:53:53 +00:00
MIT © [Vylpes](https://www.vylpes.com)