Skip to main content
Deno 2 is finally here šŸŽ‰ļø
Learn more

Candle

candle is a single file, independent discord api library for deno

setup

import { client } from 'https://deno.land/x/candle@v1.0.0-beta/deps.js';

const bot = new client('token');
bot.run();

events

current events: ā€˜ready’ ā€˜messageCreate’ ā€˜messageDelete’ ā€˜guildMemberAdd’ ā€˜guildMemberRemove’ ā€˜guildCreate’

send a message

bot.createMessage({
  channel: 'channel_id',
  content: 'hello world' })