mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-01 16:30:08 +00:00
Better wording, segregate into sections, more readable
This commit is contained in:
34
README.md
34
README.md
@@ -2,13 +2,17 @@
|
||||
|
||||
> Discord API library wrapper in Deno
|
||||
|
||||
[](https://discord.gg/J4NqJ72)
|
||||
[](https://discord.gg/J4NqJ72)
|
||||

|
||||
[](https://nest.land/package/Discordeno)
|
||||
|
||||
## Beginner Developers
|
||||
## Why Discordeno?
|
||||
|
||||
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!
|
||||
### 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 to do so. Discordeno is built considering all the issues wit pre-existing libraries, such as discord.js, and issues that I had when I first started out coding bots.
|
||||
|
||||
If you are a beginner developer, please use this official boilerplate: [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!
|
||||
|
||||
**Modular commands, arguments, events, inhibitors, monitors, tasks.**
|
||||
|
||||
@@ -39,15 +43,10 @@ Don't worry a lot of developers start out coding their first projects as a Disco
|
||||
- Uses i18next, one of the best localization tools available.
|
||||
- Supports nested folders to keep cleaner translation files
|
||||
|
||||
**Hot Reloadable**
|
||||
- **Hot Reloadable**: 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!
|
||||
|
||||
- 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!
|
||||
|
||||
## Advanced Developers
|
||||
### Advanced Developers
|
||||
|
||||
The instructions below are meant for advanced developers!
|
||||
|
||||
@@ -62,7 +61,7 @@ StartBot({
|
||||
intents: [Intents.GUILD_MESSAGES, Intents.GUILDS],
|
||||
eventHandlers: {
|
||||
ready: () => {
|
||||
console.log(`Logged!`);
|
||||
console.log('Successfully connected to gateway');
|
||||
},
|
||||
messageCreate: (message) => {
|
||||
if (message.content === "!ping") {
|
||||
@@ -75,8 +74,13 @@ StartBot({
|
||||
|
||||
Alternatively, you can use boilerplate template repositories that were created by wonderful developers. Review the list on the website, and add any of yours if you make your own.
|
||||
|
||||

|
||||
## Documentation
|
||||
|
||||
#### Dark Mode
|
||||
- [API Documentation](https://doc.deno.land/https/deno.land/x/discordeno/mod.ts)
|
||||
- [Guide](https://discordeno.netlify.com)
|
||||
- [Support server](https://discord.gg/J4NqJ72)
|
||||
- [Contributing Guide](https://github.com/Skillz4Killz/Discordeno/blob/master/.github/CONTRIBUTING.md)
|
||||
|
||||

|
||||
## License
|
||||
|
||||
MIT © Skillz4Killz
|
||||
|
||||
Reference in New Issue
Block a user