
Security News
MCP Steering Committee Launches Official MCP Registry in Preview
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
discord-meme-feed
Advanced tools
Posts a random shitpost/meme/joke from the database. https://docs.jimijs.pl/
Our memes are taken from various discord servers, and are 100x funnier than the reddit ones. Our memes API was made 100% by us, and not stolen from the world wide web.
Get a random meme:
const memefeed = require('discord-meme-feed')
memefeed.meme (function(url) {
// --> console.log(url)
});
Get a random nerdy joke
const memefeed = require('discord-meme-feed')
memefeed.joke (function(url) {
// --> console.log(url)
});
Discord bot example:
const Discord = require('discord.js')
const client = new Discord.Client()
const memefeed = require('discord-meme-feed')
client.on('message', (message) => {
if(message.content.startsWith('!meme')) {
memefeed.meme (function(url) {
message.channel.send(`${url || null}`)
});
}
})
client.on('message', (message) => {
if(message.content.startsWith('!nerdy-joke')) {
memefeed.joke (function(joke) {
message.channel.send(`${joke}`)
});
}
})
client.login(token)
Memes are collected from Discord Meme Feed Bot and then saved into the database. The database is cleared once per month, to keep the memes fresh 🥶
If you have any questions, contact me on Discord: jimi#2014
FAQs
Returns a random shitpost/meme or a nerdy joke. 🥶
The npm package discord-meme-feed receives a total of 0 weekly downloads. As such, discord-meme-feed popularity was classified as not popular.
We found that discord-meme-feed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.
Research
/Security News
npm author Qix’s account was compromised, with malicious versions of popular packages like chalk-template, color-convert, and strip-ansi published.