v6.2.0
Discord API library for Node and Deno
Attributes
Extremely Popular
Repository
Current version released
4 years ago
Dependencies
std
Versions
- 20.0.0Latest
- 19.0.0
- 18.0.1
- 18.0.0
- 17.2.0
- 17.0.1
- 17.1.0
- 17.0.0
- 16.0.1
- 16.0.0
- 15.0.3
- 15.0.2
- 15.0.1
- 15.0.0
- 14.0.1
- 14.0.0
- 13.0.0
- 13.0.0-rc51
- 13.0.0-rc50
- 13.0.0-rc49
- 13.0.0-rc48
- 13.0.0-rc47
- 13.0.0-rc46
- 13.0.0-rc45
- 13.0.0-rc44
- 13.0.0-rc43
- 13.0.0-rc42
- 13.0.0-rc41
- 13.0.0-rc40
- 13.0.0-rc39
- 13.0.0-rc38
- 13.0.0-rc37
- 13.0.0-rc36
- 13.0.0-rc35
- 13.0.0-rc34
- 13.0.0-rc33
- 13.0.0-rc32
- 13.0.0-rc31
- 13.0.0-rc30
- 13.0.0-rc29
- 13.0.0-rc28
- 13.0.0-rc27
- 13.0.0-rc26
- 13.0.0-rc25
- 13.0.0-rc24
- 13.0.0-rc23
- 13.0.0-rc22
- 13.0.0-rc21
- 13.0.0-rc20
- 13.0.0-rc19
- 13.0.0-rc18
- 13.0.0-rc17
- 13.0.0-rc16
- 13.0.0-rc15
- 13.0.0-rc14
- 13.0.0-rc13
- 13.0.0-rc12
- 13.0.0-rc11
- 13.0.0-rc10
- 13.0.0-rc9
- 13.0.0-rc8
- 13.0.0-rc7
- 13.0.0-rc6
- 13.0.0-rc5
- 13.0.0-rc4
- 13.0.0-rc3
- 13.0.0-rc2
- 13.0.0-rc1
- 12.0.1
- 12.0.0
- 12.0.0-rc.5
- 12.0.0-rc.4
- 12.0.0-rc.3
- 12.0.0-rc.2
- 12.0.0-rc.1
- 11.2.0
- 11.1.0
- 11.0.3
- 11.0.2
- 11.0.1
- 11.0.0
- 11.0.0-rc.10
- 11.0.0-rc.9
- 11.0.0-rc.8
- 11.0.0-rc.7
- 11.0.0-rc.6
- 11.0.0-rc.5
- 11.0.0-rc.4
- 11.0.0-rc.3
- 11.0.0-rc.2
- 11.0.0-rc.1
- 10.5.0
- 10.4.0
- 10.3.0
- 10.2.0
- 10.1.0
- 10.0.2
- 10.0.1
- 10.0.0
- 9.4.1
- 9.4.0
- 9.3.0
- 9.2.0
- 9.1.0
- 9.0.16
- 9.0.15
- 9.0.14
- 9.0.12
- 9.0.10
- v9.0.9
- v9.0.8
- v9.0.7
- v9.0.6
- v9.0.5
- v9.0.4
- v9.0.1
- v8.4.1
- v8.0.0
- v7.4.0
- v7.3.0
- v7.0.1
- v7.0.0
- v6.2.0
- v6.1.2
- v6.1.1
- v6.1.0
- v6.0.0
- v5.1.1
- v5.1.0
- v5.0.0
- v4.0.1
- v4.0.0
- v3.0.0
- v2.0.0
Discordeno
Discord API library wrapper in Deno
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/v6/module/client.ts";
import { sendMessage } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v6/handlers/channel.ts";
import { Intents } from "https://raw.githubusercontent.com/Skillz4Killz/Discordeno/v6/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!