Hibiki

Discord CodeClimate Issues CodeClimate Release Dependencies CircleCI AppVeyor

A Powerful but easy to use Discord bot framework

Installation

$ npm i ClarityMoe/hibiki --save
# installs the framework

Usage

import { Shard as Hibiki } from "hibiki";

const bot: Hibiki = new Hibiki("token", require("./config.json"));

bot.on("ready", () => {
    console.log("Ready!");
});

bot.on("blocked", (ms) => {
    console.log("Blocked for", `${ms}ms`);
});