1.2.2 • Published 5 years ago

@itsrauf/snap v1.2.2

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

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();
1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago