Nosedrum (nosedrum v0.6.0) View Source

nosedrum is a command framework for use with the excellent nostrum library.

It contains behaviour specifications for easily implementing command handling for both Discord's application commands and the traditional text-based commands in your bot along with other conveniences to ease creating an interactive bot.

nosedrums provided implementations are largely based off what was originally written for bolt. bolt also contains around 57 commands based off the Nosedrum.TextCommand behaviour that you can explore if you're looking for inspiration.

The application command related parts of the framework consist of two parts:

The traditional command processing related parts of the framework consists of three parts:

Additionally, the following utilities are provided:

  • Nosedrum.Converters, functions for converting parts of messages to objects from Nostrum such as channels, members, and roles.
  • Nosedrum.MessageCache, a behaviour for defining message caches, along with an ETS-based and an Agent-based implementation.

The documentation can be found at https://hexdocs.pm/nosedrum.

Installation

Simply add :nosedrum to your mix.exs:

def deps do
  [
    {:nosedrum, "~> 0.5"},
  ]
end

If you want to install the GitHub version of Nostrum, you will need to specify it with override: true in your mix.exs, for example:

def deps do
  [
    {:nosedrum, "~> 0.5"},
    {:nostrum, github: "Kraigie/nostrum", override: true}
  ]
end