
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.
Write Discord bots in style
Cordette is a small wrapper around Discord.js that makes creating Discord bots feel more intuitive and less cumbersome. It is designed to support the Living ArtsEngine OpenBot, a collaborative and modular Discord bot that everyone in Living ArtsEngine can contribute to. It simplifies the following features:
import { GatewayIntentBits, Events } from 'discord.js'
import { ModuleHost } from 'cordette'
import secret from './secret'
const host = new ModuleHost(secret.token, secret.clientId)
const mod = host.module('Pong', [GatewayIntentBits.GuildMessages, GatewayIntentBits.Guilds])
mod.when(Events.MessageCreate, async msg => {
if (msg.content.toLowerCase().trim() === 'ping!!') {
await msg.reply('pong!!')
}
})
host.commitStaged()
.then(() => host.start())
.then(() => console.log('started'))
.catch(console.error)
FAQs
Write Discord bot modules in style
We found that cordette 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.