Skip to content
This repository has been archived by the owner on May 23, 2021. It is now read-only.

Latest commit

 

History

History
33 lines (25 loc) · 1.36 KB

README.md

File metadata and controls

33 lines (25 loc) · 1.36 KB

dmkbot

Copyright (C) 2011 by Maciej Małecki and contributors (see AUTHORS.md).
MIT License (see LICENSE file)

dmkbot is a simple, extensible bot written for #node.js channel. For example module, see lib/modules/ping.js

You may try it out by setting up an IRC server on your local machine and running node bot.js. Configuration file is config/environment.js

Modules API

This is a simple module which responds to a ping command and says "Hello" every 3 seconds:

function PingModule(settings) {
  this.settings = settings;
  this.routes = [
    [/ping/, this.onPing]
  ];
  this.intervals = [ [ function(cb) { 
    cb("Hello!"); 
  }, 3000 ] ];
}

exports.Module = PingModule;

PingModule.prototype.onPing = function(from, command, args, callback) {
  callback(from + ', pong');
}

To run this module, put it in lib/modules directory, and add an entry in config/environment.js file (simply add an value to modules hash, this value will be passed as settings argument to your module).