
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
a minimal discord API wrapper
When making discord-trolling and using discord.js, I found that their environments quickly became too bloated and complicated. That's why I'm making goated, to simplify the ecosystem even more.
To use goated.js, start with the following code:
const { Client, Intents } = require("goated.js");
const client = new Client({
intents: [Intents.Guilds], // bot intents
commandsPath: `${__dirname}/commands` // path to folder with commands in it
});
client.env("./.env"); // login and read TOKEN and all other environment variables from .env
client.createCommand([
{
name: "test-command",
description: "A test command",
options: [
{
name: "test-option",
description: "A test option",
required: true,
type: Client.types.STRING,
}
],
}
], {
id: process.env.APPLICATION_ID, // the bot ID in
token: process.env.TOKEN, // the bot token
guildId: process.env.GUILD_ID, // optional for registering guild-specific commands
});
Then, create a file with the same command name in the commands directory:
module.exports.run = (interaction) => { // the interaction parameter is from the discord.js library
const option = interaction.options.getString("test-option");
interaction.reply(`You provided the option: ${option}`)';
};
FAQs
a minimal discord API wrapper
We found that goated.js demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.