Manage your slash commands by simple way with blue cord.
npm install bluecordbash
npm install bluecord
yarn add bluecord
`
Example Usage
Start the command manager.
`js
import Bluecord from "bluecord";
const token = "your discord bot token";
const options = {
version: "9"
}
// Create a new instance of blue cord.
const commandHandler = new Bluecord.Manager(token, options)
// Listening for ready event.
commandHandler.on("ready", () => {
console.log("Command handler is ready!");
console.log(Detected ${commandHandler.app.commands.length} commands.);
});
``