brussell98.github.io Open in urlscan Pro
2606:50c0:8000::153  Public Scan

Submitted URL: http://brussell98.github.io/Mirai/index.html
Effective URL: https://brussell98.github.io/Mirai/index.html
Submission: On September 22 via api from US — Scanned from DE

Form analysis 0 forms found in the DOM

Text Content

HOME


CLASSES

 * AbstractCommand
   * _sendMessage
   * awaitMessage
   * destroy
   * escapeMarkdown
   * load
   * sendMessage
   * userOnCooldown
 * AbstractCommandPlugin
   * destroy
   * handle
   * load
 * AbstractEventPlugin
   * destroy
   * load
 * AbstractMiddleware
   * destroy
   * load
 * Bot
   * findMember
   * findUser
   * loadCommandPlugin
   * loadEventPlugin
   * loadMiddleware
   * reloadCommandPlugin
   * reloadEventPlugin
   * reloadMiddleware
   * setAvatar
   * updateBotsOnDiscord
   * updateCarbon
   * updateDiscordBots
   * updateDiscordBotsOrg
 * ChatHandler
   * awaitMessage
   * getHelp
   * run
   * stop
 * Logger
   * debug
   * error
   * info
   * log
   * warn


MIRAI BOT CORE



A powerful Discord bot core using Eris.

DOCUMENTATION | ERIS DOCS | MIRAI BOT WEBSITE | SUPPORT ME ON PATREON | DISCORD
SERVER | MIRAI BOT COMBINED TODO LIST

mirai-bot-core supports advanced application monitoring with sentry.io using
raven. For more information head over to the docs.


INSTALLING

yarn add mirai-bot-core

const Mirai = require('mirai-bot-core');
const bot = new Mirai(config);


ABSTRACT CLASSES

Abstract classes are provided to ensure you have the required methods. They can
be accessed like so:

const AbstractCommand = require('mirai-bot-core/lib/Base/AbstractCommand');

class PingCommand extends AbstractCommand {
    constructor() {
        super();
    }
}