1.0.0 • Published 3 years ago

discord-easy-commands v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

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");