Denorine 2.0 is a discord bot made to simplify your life, it is modular and has its own init system
Denorine uses something called the hooks system, which is somewhat similar to a bsd style init script. Usage is simple here is an example hook files
const Discord = require("discord.js");
module.exports = {
/**
*@param {Discord.Client} client
*/
execute(client) {
client.once('ready', async () => {
client.user.setActivity("Gacha Cringe", {
type: "WATCHING",
});
});
}
}
anything in execute will be executed on bot ready, simply place the hook file in src/hooks
Check out The first setup guide here