1.3.1 • Published 3 years ago

monno v1.3.1

Weekly downloads
-
License
LGPL-3.0-or-later
Repository
github
Last release
3 years ago

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>")
1.2.5

3 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.3.1

3 years ago

1.3.0

3 years ago

1.2.2

3 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.0

3 years ago

1.0.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.3

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago