cordlr-reddit
Version:
Cordlr Plugin that lists posts from subreddits on reddit.com.
75 lines (50 loc) • 1.46 kB
Markdown
> Cordlr Plugin that lists posts from subreddits on [reddit.com](https://www.reddit.com).
You can install **cordlr-reddit** as a npm package via:
``npm install cordlr-reddit --save``
Now append your ``corldr.json`` file, and add ``cordlr-reddit`` as a new plugin that Cordlr can load it.
```javascript
// cordlr.json:
{
"token":"YourTokenHere",
"prefix":"!",
"loader":"cordlr-loader",
"plugins":[
// ...
"cordlr-help2",
"cordlr-reddit" // add this
]
}
```
Lists hot posts from a subreddit:
``!r <subreddit>``
**Example Usage:** ``!r funny``
Lists top posts from a subreddit (Past 24 hours):
``!r top <subreddit>``
**Example Usage:** ``!r top videos``
Lists latest posts from a subreddit:
``!r new <subreddit>``
**Example Usage:** ``!r new pics``
## Configuration (Optional)
By default this plugins fetches **5** posts from a subreddit. You can overwrite the number of posts to any number between ``1`` and ``100`` in the ``cordlr.json`` file.
Example configuration with 3 posts:
```javascript
// cordlr.json
{
"token":"YourTokenHere",
"prefix":"!",
"loader":"cordlr-loader",
"plugins":[
// ...
"cordlr-help2",
"cordlr-reddit"
],
"cordlr-reddit": { // add this
"numPosts": 3 // any number between 1 an 100
}
}
```
MIT © [ciruz](https://github.com/ciruz)