Have fun and make your day with meme command
const lib = require('lib')({token: process.env.STDLIB_SECRET_TOKEN});
const random = require("something-random-on-discord").Random
if (context.params.event.content.startsWith('!meme')) {
const memeJSON = await random.getMeme()
memeJSON.embed.color = 0x00ff00
return await lib.discord.channels['@0.1.1'].messages.create({
channel_id: context.params.event.channel_id,
content: ``, // required
embed: memeJSON.embed
});
}