erisa
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

Erisa

Build Status Maintainability Test Coverage npm

Erisa is a Discord bot framework built upon Eris using TypeScript.

This is currently a heavy work-in-progress and nothing is guarenteed to be consistent and stable until v1.

Installation

npm install erisa

Basic Usage

Instead of using conventional .on listeners, Erisa provides a .use function for listening to events, (sort of similar to Express' .use middleware function), which allows wildcard listeners among other things.

TypeScript (recommended)

import {Erisa} from 'erisa';
import {Message} from 'eris'; // For types
 
const bot = new Erisa('token');
 
bot.use('ready', () => console.log('Erisa online!'));
 
bot.use('createMessage', (_, msg: Message) => {
    if (msg.content === '!ping') {
        msg.channel.createMessage('Pong!');
    }
});
 
bot.connect();

JavaScript

const {Erisa} = require('erisa');
 
const bot = new Erisa('token');
 
bot.use('createMessage', (_, msg) => {
    if (msg.content === '!ping') {
        msg.channel.createMessage('Pong!');
    }
});
 
bot.connect();

I found a bug or want to request a feature

Open an issue here, making sure that no duplicate issues exist already (unless you believe your situation to be different enough to warrant a new issue).

Contributing

For further contribution, guidelines see CONTRIBUTING.

License

This repository is licensed under the MIT license. More info can be found in the LICENSE file.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.8
    1
    • latest

Version History

Package Sidebar

Install

npm i erisa

Weekly Downloads

4

Version

0.0.8

License

MIT

Unpacked Size

20.9 kB

Total Files

16

Last publish

Collaborators

  • ovyerus