v12.5.1-Deno-0.3.1
A powerful JavaScript library for interacting with the Discord API
Repository
Current version released
5 years ago
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");