1.0.1 • Published 6 years ago

discord-admin v1.0.1

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

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