Files
discordeno/examples
Fleny 27ab08a61d feat(gateway)!: Resharding with workers (#4206)
* feat(gateway): Rework how shards are resharded

* Make bigbot example use the resharding

* fix reshard doesn't increment the lastShardId

From my testing it works, however i don't know if we should just do
this or is there a better way

* revert createGatewayManager type changes
It breaks if you want to disable resharding, didn't think of that

* Fix typo (#4252)

* Apply suggestions from code review

Co-authored-by: Link <lts20050703@gmail.com>

---------

Co-authored-by: NotDemonix <90858555+NotDemonix@users.noreply.github.com>
Co-authored-by: Link <lts20050703@gmail.com>
2025-08-04 19:46:24 +02:00
..

Discordeno Bot Templates

In this directory you will find some example bots written using Discordeno.

In each template directory you will find more information on how to setup and run the template.

Minimal & Beginner

A very minimal bot with only a /ping command to show how to set-up a discordeno bot for interactions

The beginner template is a bit more complete and has a caching system already setup using the dd-cache-proxy library

Advanced

A more complex bot compared to beginner. It also has a /ping command, but also a /warn command showing how to deal with permissions and sending DMs

This template has a caching system already setup using the dd-cache-proxy library

BigBot

Log Image

The BigBot template is intended for more complex systems that need scaling.

The template consists of 3 folders with some common files. The template is configured with a REST proxy, the Gateway in a separate process and the Bot code in another.

While the template does not include any caching by default, you can either install dd-cache-proxy and setup it or roll your own solution