Files
Fleny 27c261fee2 formatter: Use semicolons (#4686)
I prefer semicolors, they also help avoiding certain pitfalls in JavaScript/TypeScript, such as the following code sample:
```js
const xyz = "test"
(something.else as string) = "another"
```
This results in a TypeError: "test" is not a function, this is because js thinks we are trying to call the string "test" as a function.
To fix this it requires a `;` somewhere before the `(`, such as `;(something ... ` which in my opinion is ugly and less clean overall.
2026-01-17 21:54:15 +01:00
..
2026-01-17 21:54:15 +01:00

Beginner Bot Template

This template is designed for beginners to start coding discord bots.

This template includes caching (using dd-cache-proxy) and support for slash subcommands. This template also includes a /ping command to show the bot latency

Setup

  • Download the source
  • Install the dependencies using yarn
  • Copy the .env.example file and rename it to .env
  • Fill out the .env file

Run Bot

  • run yarn to install the dependencies
  • run yarn build to build the source
  • run node dist/register-commands.js to register the slash commands
  • run yarn start to run the bot