About
@discordjs/core
is a thinly abstracted wrapper around the "core" components of the Discord API: REST, and gateway.
Installation
Node.js 20 or newer is required.
npm install @discordjs/core
yarn add @discordjs/core
pnpm add @discordjs/core
Example usage
import { REST } from '@discordjs/rest';
import { WebSocketManager } from '@discordjs/ws';
import { GatewayDispatchEvents, GatewayIntentBits, InteractionType, MessageFlags, Client } from '@discordjs/core';
const rest = new REST({ version: '10' }).setToken(process.env.DISCORD_TOKEN);
const gateway = new WebSocketManager({
token: process.env.DISCORD_TOKEN,
intents: GatewayIntentBits.GuildMessages | GatewayIntentBits.MessageContent,
rest,
});
const client = new Client({ rest, gateway });
client.on(GatewayDispatchEvents.InteractionCreate, async ({ data: interaction, api }) => {
if (interaction.type !== InteractionType.ApplicationCommand || interaction.data.name !== 'ping') {
return;
}
await api.interactions.reply(interaction.id, interaction.token, { content: 'Pong!', flags: MessageFlags.Ephemeral });
});
client.once(GatewayDispatchEvents.Ready, () => console.log('Ready!'));
gateway.connect();
Independent REST API Usage
const rest = new REST({ version: '10' }).setToken(token);
const api = new API(rest);
const guild = await api.guilds.get('1234567891011');
Links
Contributing
Before creating an issue, please ensure that it hasn't already been reported/suggested, and double-check the
documentation.
See the contribution guide if you'd like to submit a PR.
Help
If you don't understand something in the documentation, you are experiencing problems, or you just need a gentle nudge in the right direction, please don't hesitate to join our official discord.js Server.