2020-08-05 17:26:19 -04:00
2020-07-12 12:32:08 -04:00
2020-08-05 17:26:19 -04:00
2020-08-05 17:22:06 -04:00
2020-07-12 22:45:51 -04:00
2020-05-16 20:29:48 +08:00
2020-07-17 08:28:23 -04:00
2020-05-06 15:28:47 -04:00
2020-07-07 17:04:16 -04:00
2020-02-06 23:18:13 -05:00
2020-08-05 17:22:06 -04:00
2020-08-05 17:26:19 -04:00
2020-02-20 15:20:43 -05:00

Discordeno

Discord API library wrapper in Deno

Discord Server

Website

Documentation Testing

Starting with Discordeno is very simple, you can start from scratch without any boilerplates/frameworks: Add this snippet of code into a new TypeScript file:

import Client from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/module/client.ts";
import { sendMessage } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/handlers/channel.ts";
import { Intents } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v7/src/types/options.ts";
import config from "./config.ts";

Client({
    token: config.token,
    intents: [Intents.GUILD_MESSAGES, Intents.GUILDS],
    eventHandlers: {
        ready: () => {
            console.log(`Logged!`);
        },
        messageCreate: (message) => {
            if (message.content === "!ping") {
                sendMessage(message.channel, "Pong");
            }
        }
    }
});

Alternatively, you can use boilerplate template repositories that were created by wonderful developers. The official one is at: GitHub but there will be more listed on the website. It is a beautiful website indeed! Check it out!

image

Dark Mode

image

Languages
TypeScript 98%
MDX 0.7%
CSS 0.6%
JavaScript 0.6%
Dockerfile 0.1%