@itsrauf/snap
v1.2.2
Published
Snap: The easy to use framework for Eris https://abal.moe/Eris (meant for beginners!)
Downloads
7
Readme
snap
Snap: The easy to use framework for Eris https://abal.moe/Eris/ (meant for beginners!)
Example:
const Snap = require("@itsrauf/snap");
const bot = new Snap.CommandClient("prefix", "token");
bot.on("ready", () => {
console.log("Ready!");
});
const ping = new Snap.Command(
"ping",
(msg, args, bot) => {
msg.channel.createMessage("Pong!");
},
{
description: "Ping Pong!",
usage: "ping"
}
);
bot.commands.addItem("ping", ping);
bot.connect();