Skip to content

Latest commit

 

History

History
23 lines (22 loc) · 523 Bytes

File metadata and controls

23 lines (22 loc) · 523 Bytes

Discord Bot Admin Page

Allows you to see stats for your Discord Bot. Works with all Discord Bot API's.

How to use

  1. Require the package
var DiscordAdmin=require("discord-admin");
  1. Create the class & run the webserver on port 3000
var DiscordAdmin=require("discord-admin");
var Admin=new DiscordAdmin(3000);
  1. Add actions
// ... command `a` ...
Admin.addCommand("a");
// ... joins guild ...
Admin.addGuild();
// ... leaves guild ...
Admin.removeGuild();
  1. Run & Visit localhost:3000