Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@reinforz/cordmand
Advanced tools
A utility package for making discord-bot commands much easier to write with discord.js
A utility package for making discord-bot commands much easier to write with discord.js.
npm i @reinforz/cordmand
or,
yarn add @reinforz/cordmand
import { Client, GatewayIntentBits } from "discord.js";
import { addCommands, Commands } from "@reinforz/cordmand";
// initiate discord.js client
const client = new Client({
intents: [
GatewayIntentBits.Guilds,
GatewayIntentBits.GuildMessages,
GatewayIntentBits.MessageContent,
GatewayIntentBits.GuildMembers,
],
});
// define your commands similar to
const commands: Commands = {
interactionCreate: [
// define interactions here
{
name: "ping",
cb: async (interaction) => {
await interaction.reply("Pong!");
},
},
],
messageCreate: [
{
regex: /ping/i,
message: "pong",
},
{
regex: /hi/i,
// message can also be a callback function which can access the discord message object
message: (_, message) => `hello <@${message.author.id}>`,
},
{
regex: /bye/i,
message: (_, message) => `bye ${message.author.username}`,
reply: true, // uses discord's message.reply intead of just sending the message in the same channel
},
{
regex: /args/i,
message: (args) => `The arguments are: ${args.join(", ")}`,
reply: true,
},
],
};
// add commands to the client by calling the addCommands function provided by the client
addCommands(client, commands, {
messageCommandPrefix: /^i!/i,
// Add your command prefix regex. Make sure to include ^ (starts with) in the regex
});
// login
client.login(process.env.BOT_TOKEN!);
FAQs
A utility package for making discord-bot commands much easier to write with discord.js
The npm package @reinforz/cordmand receives a total of 0 weekly downloads. As such, @reinforz/cordmand popularity was classified as not popular.
We found that @reinforz/cordmand demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.