Slurpcord is a beginner-friendly API wrapper for Discord, designed to be easy to use and understand, especially for those who are new to Discord bot development.
import { Bot } from "slurpcord";
const bot = new Bot("DISCORD_TOKEN", "PREFIX");
bot.command("ping", async (cmd) => {
await cmd.reply("Pong!");
});
bot.start();
- Easy-to-use commands for managing Discord bots.
- Supports both message-based commands and slash commands.
- Built-in caching for faster performance.
- Lightweight and simple to integrate into your own projects.