mirror of
https://github.com/discordeno/discordeno.git
synced 2026-09-17 08:47:22 +00:00
README badges 🎉🎉🎉🎉🎉🎉
This commit is contained in:
@@ -1,14 +1,13 @@
|
||||
# Discordeno
|
||||
|
||||
Discord API library wrapper in Deno
|
||||
> Discord API library wrapper in Deno
|
||||
|
||||
[Discord Server](https://discord.gg/J4NqJ72)
|
||||
[](https://discord.gg/J4NqJ72)
|
||||

|
||||
[](https://nest.land/package/Discordeno)
|
||||
|
||||
[Website](https://discordeno.netlify.app)
|
||||
|
||||
[](https://nest.land/package/Discordeno)
|
||||

|
||||
|
||||
## Beginner Developers
|
||||
|
||||
Don't worry a lot of developers start out coding their first projects as a Discord bot(I did 😉) and it is not so easy. With Discordeno, I tried to build it in a way that solved all the headaches I had when first starting out coding bots. If you are a beginner developer, please use a boilerplate: The official one is at: [GitHub](https://github.com/Skillz4Killz/Discordeno-bot-template) but there will be more listed on the website. It is a beautiful website indeed! Check it out!
|
||||
@@ -43,12 +42,15 @@ Don't worry a lot of developers start out coding their first projects as a Disco
|
||||
- Supports nested folders to keep cleaner translation files
|
||||
|
||||
**Hot Reloadable**
|
||||
- Easily update your code without having to restart the bot everytime.
|
||||
|
||||
- Easily update your code without having to restart the bot everytime.
|
||||
|
||||
**Step By Step Guide**
|
||||
- There is a step by step walkthrough to learn how to create Discord bots with Discordeno on our website!
|
||||
|
||||
- There is a step by step walkthrough to learn how to create Discord bots with Discordeno on our website!
|
||||
|
||||
## Advanced Developers
|
||||
|
||||
The instructions below are meant for advanced developers!
|
||||
|
||||
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:
|
||||
@@ -60,18 +62,18 @@ import { Intents } from "https://x.nest.land/Discordeno@9.0.1/src/types/options.
|
||||
import config from "./config.ts";
|
||||
|
||||
StartBot({
|
||||
token: config.token,
|
||||
intents: [Intents.GUILD_MESSAGES, Intents.GUILDS],
|
||||
eventHandlers: {
|
||||
ready: () => {
|
||||
console.log(`Logged!`);
|
||||
},
|
||||
messageCreate: (message) => {
|
||||
if (message.content === "!ping") {
|
||||
sendMessage(message.channelID, "Pong");
|
||||
}
|
||||
}
|
||||
}
|
||||
token: config.token,
|
||||
intents: [Intents.GUILD_MESSAGES, Intents.GUILDS],
|
||||
eventHandlers: {
|
||||
ready: () => {
|
||||
console.log(`Logged!`);
|
||||
},
|
||||
messageCreate: (message) => {
|
||||
if (message.content === "!ping") {
|
||||
sendMessage(message.channelID, "Pong");
|
||||
}
|
||||
},
|
||||
},
|
||||
});
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user