reddit-package
v1.0.0
Published
a package that lets you search a specific subreddit
Downloads
6
Maintainers
Readme
Welcome to the Reddit-Package
This is an implementation with a discord bot
const lib = require("reddit-package")
const Discord = require("discord.js")
const client = new Discord.Client()
client.on('message', async message => {
if(message.content === "!meme") {
let data = lib.reddit('meme')
message.channel.send(data.img)
//sends the image
}
})
client.login("always keep ur token secure")