discord-easy-commands
v1.0.0
Published
A library to help you make simple trigger, response commands for a discord bot
Downloads
9
Maintainers
Readme
Usage
const easycmdClient = require('discord-easy-commands');
const easycmds = new easycmdClient({ prefix: "!" });
// The first parameter is the triggerer and the second one the response
// you can use reserved words such as author.username, author.tag, author.mention, guild.name, etc.
easycmds.addcmd("test", "test");
// prints smth like '[LOG] Command test successfully added'
easycmds.start("token");