discord-admin
v1.0.1
Published
Discord Bot Admin Page
Downloads
5
Readme
Discord Bot Admin Page
Allows you to see stats for your Discord Bot. Works with all Discord Bot API's.
How to use
- Require the package
var DiscordAdmin=require("discord-admin");
- Create the class & run the webserver on port 3000
var DiscordAdmin=require("discord-admin");
var Admin=new DiscordAdmin(3000);
- Add actions
// ... command `a` ...
Admin.addCommand("a");
// ... joins guild ...
Admin.addGuild();
// ... leaves guild ...
Admin.removeGuild();
- Run & Visit localhost:3000