
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
[]() [](https://opensource.org/licenses/) []()
A simple package to create bots in discord
discord-c is a very simple bot creation API, if you want something very simple, like just responding to messages or commands, this API is for you
const { Bot } = require('discord-c');
const bot = new Bot();
bot.onmessage((ctx) => {
ctx.channel.send(ctx.author.mention, 'Hi');
});
bot.command('ping', (ctx) => {
ctx.channel.send('PONG!');
});
bot.start('token', () => {
console.log('started');
});
Default prefix is $
bot.command('ping', (ctx) => {
ctx.channel.send('PONG!');
});
bot.command('hi', (ctx) => {
ctx.channel.send('Hello .-.');
});
const { Bot } = require('discord-c');
const com = new Bot.Commands();
com.command('ping', (ctx) => {
ctx.channel.send('PONG!');
});
com.command('hi', (ctx) => {
ctx.channel.send('Hello .-.');
});
module.exports = bot;
In other file
const { Bot } = require('discord-c');
const commands = require('./commands');
const bot = new Bot();
bot.commandsUse(commands);
Basic functions
| Instance | Functions | Description |
|---|---|---|
| bot | onmessage | On message call your callback |
| bot | comamnd | On commands call your callback |
| bot | start | Starts bot |
All ctx functions
| Parameter | Object | Description |
|---|---|---|
| ctx | channel Function | Send message in channel |
| ctx | author.mention | Mention author of message |
| ctx | author.mention | Mention author of message |
| ctx | author.id | Id author of message |
| ctx | author.avatar | Avatar author of message |
FAQs
[]() [](https://opensource.org/licenses/) []()
We found that discord-c 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.