slurpcord
Version:
Simple API wrapper for Discord
27 lines (19 loc) • 792 B
Markdown
<p style="align: center;">
<img src="https://slurpy-films.github.io/images/slurpcord.png" style="width: 150px; height: auto;" />
</p>
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.
```js
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.