1.0.1 • Published 9 months ago

ordis v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

Ordis 🚀

With Ordis, you can easily create Object-Oriented Discord Bots

Installation

npm i ordis

Usage

import { OrdisClient, Intents, Plugin } from 'ordis';
const client = new OrdisClient(Intents.Default);
client.login('token');

class MyPlugin extends Plugin {
    constructor() {
        super('My plugin');
    }

    apply(client) {
        console.log(`Applied plugin ${this.name} to the bot.`);
    }
}

client.use(new MyPlugin());