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

1.3.1 • Public • Published

Monno, a simple to use discord.js bot framework

Install Monno

With npm:

npm install monno

Or with yarn:

yarn add monno

Features and pros of Monno

  • Easy to use command framework
  • Revolutionary concept of extensions that allow you to split your bot into multiple parts or to easily register third party extensions
  • Maintains the true spirit of discord.js while allowing you to easily add features without having to work on boring internals

Simple hello world project

import { Monno } from "monno"

const client = new Monno({
    dev: true,
    developerIDs: ["12345678901234567"],
    devGuildID: "12345678901234567",
    intents: []
})

client.slashCommands.add({
    name: "helloworld",
    description: "Says hello to the world",
    run: async interaction => {
        interaction.reply("Hello, World!")
    },
})

client.start("<TOKEN>")

Package Sidebar

Install

npm i monno

Weekly Downloads

1

Version

1.3.1

License

LGPL-3.0-or-later

Unpacked Size

29.7 kB

Total Files

17

Last publish

Collaborators

  • marzeq