Quickstart Guide
Step 1: Create a new project
npm create @sern/botpnpm create @sern/botyarn create @sern/botbun create @sern/botsern has been created with the goal of making it easier to create Discord bots, so we’ve made it simple to get a boilerplate up and running with a single command.
Step 2: Adding a token
Rename .env.example to .env and add your bot token to the DISCORD_TOKEN field.
If you’re not familiar with how to get a bot token, you can follow the tutorial on discordjs.guide.
Step 3: Invite the bot to your server
Again, we recommend using discordjs.guide for this step.
Step 4: Run the bot!
A development command inside the CLI is in the works. For now, you have to restart the bot manually for your changes to take effect.
npm run build && npm startpnpm build && pnpm startyarn build && yarn startbun build && bun startIf you need help, feel free to ask on our Discord!