All Projects → brussell98 → Mirai

brussell98 / Mirai

Licence: mit
The core for Mirai Bot v4 [Deprecated]

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Mirai

Sylphy
👑 the better discord bot framework
Stars: ✭ 85 (-40.14%)
Mutual labels:  bot, discord-bot, plugins, modular, discord
Pvpcraft
PvPCraft Discord bot
Stars: ✭ 29 (-79.58%)
Mutual labels:  bot, discord-bot, modular, discord
Discord.js Musicbot Addon
This DOES NOT WORK any more. This repo only serves as an archive for is anyone wants to pickup my work. You may still join the discord however.
Stars: ✭ 109 (-23.24%)
Mutual labels:  bot, discord-bot, discord, npm
Modmail
A feature-rich Discord bot for easy communication between server staff and users.
Stars: ✭ 115 (-19.01%)
Mutual labels:  bot, discord-bot, discord
Nino
🔨 Advanced and cute moderation discord bot as an entry of Discord's Hack Week!
Stars: ✭ 78 (-45.07%)
Mutual labels:  bot, discord-bot, discord
Discord Panel
📊 User friendly dashboard/tool for discord bot developpers to manage servers
Stars: ✭ 116 (-18.31%)
Mutual labels:  bot, discord-bot, discord
Luna
An adorable Discord.js bot. Free, Open Source and Cross Platform, usable as a solid base for larger projects. Written in NodeJs.
Stars: ✭ 76 (-46.48%)
Mutual labels:  bot, discord-bot, discord
Discord.js
discord.js is a powerful Node.js module that allows you to easily interact with the Discord API.
Stars: ✭ 16,432 (+11471.83%)
Mutual labels:  bot, discord-bot, discord
Discord.js Menu
💬 Easily create Discord.js v12 embed menus with reactions and unlimited customizable pages.
Stars: ✭ 89 (-37.32%)
Mutual labels:  bot, discord-bot, discord
Bot
An open-source and self-hosted ticket management bot for Discord - a free alternative to the premium and white-label plans of other popular ticketing bots.
Stars: ✭ 122 (-14.08%)
Mutual labels:  bot, discord-bot, discord
Sir Lancebot
A Discord bot started as a community project for Hacktoberfest 2018, later evolved to an introductory project for aspiring new developers starting out with open source development.
Stars: ✭ 105 (-26.06%)
Mutual labels:  bot, discord-bot, discord
Bot
A Discord bot for all your needs. With memes, utilities, moderation & more, Fire is the only bot you'll need.
Stars: ✭ 79 (-44.37%)
Mutual labels:  bot, discord-bot, discord
Misaki
Misaki is Discord Bot designed for communities with commands ranging from gif based anime reactions, to head scratching trivia commands.
Stars: ✭ 78 (-45.07%)
Mutual labels:  bot, discord-bot, discord
Invite Manager
This bot will show who invited who. It's recording and showing the total count of invitations of an user, how many of them left, etc.
Stars: ✭ 77 (-45.77%)
Mutual labels:  bot, discord-bot, discord
Music Bot
Simple music bot with a full-blown queue system that is easy to understand
Stars: ✭ 102 (-28.17%)
Mutual labels:  bot, discord-bot, discord
Dtel
Telephone roleplay bot on Discord
Stars: ✭ 108 (-23.94%)
Mutual labels:  bot, discord-bot, discord
Discordbot
A Java Discord bot using JDA
Stars: ✭ 92 (-35.21%)
Mutual labels:  bot, discord-bot, discord
Distube
A Discord.js v12 module to simplify your music commands and play songs with audio filters on Discord without any API key. Support YouTube, SoundCloud, Bandcamp, Facebook, and 700+ more sites
Stars: ✭ 73 (-48.59%)
Mutual labels:  bot, discord-bot, discord
Basicbot
A basic example of a Discord Bot written in Python. (discord.py)
Stars: ✭ 73 (-48.59%)
Mutual labels:  bot, discord-bot, discord
Pengubot
Official PenguBot GitHub Repository
Stars: ✭ 98 (-30.99%)
Mutual labels:  bot, discord-bot, discord

Mirai Bot Core

Discord server David GitHub license Code Climate npm

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();
	}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].