Socket
Socket
Sign inDemoInstall

monno

Package Overview
Dependencies
31
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    monno

A simple to use discord.js bot framework


Version published
Maintainers
1
Install size
12.1 MB
Created

Readme

Source

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

Keywords

FAQs

Last updated on 09 Apr 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc