Skip to content

Latest commit

 

History

History
104 lines (62 loc) · 4.85 KB

ROBO.md

File metadata and controls

104 lines (62 loc) · 4.85 KB

Hiya, Moore ✨

Welcome to your fresh Robo.js project! A Node framework for Discord.js bots, Robo.js handles boilerplate, automates command registration, simplifies Typescript support, and boasts "Sage" for easy interactions. Empowered by a dynamic plugin system, your robo thrives on RoboPlay or any Node-supporting host.

Let's get started on your journey to create the perfect Discord bot!

📚 Documentation: Getting started

🚀 Community: Join our Discord server

Running 🏃‍♂️

To run your Robo, simply use the following command:

npx robo dev

No need to re-run when you make changes. Your Robo will automatically restart! 🔄

Ready to deploy and keep your Robo online at all times? It's as simple as:

npx robo deploy

Developing 🏗️

Create new slash commands by making a new file under the /src/commands directory with an exported default function. The file's name becomes the command's name. You can either use the interaction parameter or return the result to let Sage handle it for you. For more info on commands, see the Discord.js Documentation.

Commands will be automatically registered with Discord when needed, but you can force it by running npx robo build -f.

To listen to new events, create a file named after the event in /src/events. For example, typingStart.js will notify you when someone starts typing. You can stack multiple files for the same event by making a directory named after the event. Files inside it can be named whatever you want. For example:

- src
  - events
    - typingStart
      - your-file.js
      - another.js

📚 Documentation: Slash commands

📚 Documentation: Events

📚 Documentation: Context Menus

Debugging 🐞

Got bugs? No biggie! Robo.js has your back with nifty built-in debugging magic. During dev mode, Robo will provide you with error information, stack traces, interactive logs, and even a sneak peek at the exact code that caused the issue!

To get started, set up a personal Discord server for your Robo to hang out in and add your server's ID as a DISCORD_GUILD_ID env variable. Doing this unlocks the fab debugging features, plus the super-handy /dev command that gives you quick access to logs, system info, and more.

📚 Documentation: Debugging

Configuration ⚙️

Robo.js automatically handles creating your Discord.js Client instance, but you can still configure what gets passed to it using the config/robo.mjs file. Use it to add more intents or change the behavior of other Robo.js features such as Sage.

The .env file contains your DISCORD_TOKEN and DISCORD_CLIENT_ID. Keep these secret. You can get these values from the Discord Developer Portal.

Plugins 🔌

This Robo boasts an intuitive plugin system that grants new capabilities instantly!

npx robo add @roboplay/plugin-ai

Swap out @roboplay/plugin-ai with your chosen plugin's package name

With that, your Robo automatically equips itself with all the features the plugin offers. Want to revert? Simply use robo remove to uninstall any plugin.

📚 Documentation: Installing plugins

Crafting something unique in your Robo project? You can turn your innovations into plugins, be it specific functionalities or your entire Robo. Share your genius with the world!

📚 Documentation: Creating plugins

Deployment 🚀

Run the robo deploy command to automatically deploy to RoboPlay for free once you're ready to keep your robo online 24/7.

npx robo deploy

🚀 RoboPlay: Hosting your Robo

You can also self-host your robo anywhere that supports Node. Just make sure to run robo build followed by npm start (alias for robo start here):

npx robo build
npm start

You can also run robo invite (beta) to automatically generate a server invite to test it yourself or show it off! You can also use the Discord Developer Portal to generate an invite as usual.

npx robo invite

Happy coding! 🎉