Skip to main content
Deno 2 is finally here 🎉️
Learn more

See the original repo at discordjs/discord.js Prefer the latest version of this module. (At least v12.5.1-Deno-0.3)

Example Usage:

import { Client } from 'https://deno.land/x/discord_js@v12.5.1-Deno-0.3/mod.ts';

const client = new Client();

client.on('ready', () => {
    console.log(`Logged as ${client.user.tag}`);
});

client.login("Your Bot's Unique Token");