rocketchat-bot

1.0.1 • Public • Published

rocketchat-bot

A bot framework for Rocket.Chat, built on bot-commander.

Usage

Load the bot like so:

const Bot = require("rocketchat-bot").Bot;
 
const bot = new Bot({
  server: "your.rocket.chat",
  username: "botuser",
  password: "botpass"
});
 
bot.start();
 
bot.on("ready", () => {
  bot.loadPlugins(__dirname + "/plugins");
});

Create a plugins directory, containing your named plugins (e.g. test, droll). Then create a plugin.js file in the directory:

module.exports = bot => {
  bot.command("test")
    .action(meta => {
      bot.send(meta, "Hello, world!");
    });
};

For more information on the bot object, see the bot-commander documentation.

The WebSocket and REST APIs are exposed via bot.wsAPI and bot.webAPI respectively.

Dependencies (9)

Dev Dependencies (2)

Package Sidebar

Install

npm i rocketchat-bot

Weekly Downloads

2

Version

1.0.1

License

BSD-3-Clause

Last publish

Collaborators

  • lemmmy