1.0.0 • Published 11 years ago
nwitch-motivate v1.0.0
nwitch-motivate
nwitch (and slate-irc) plugin for motivating people.
05:34 <KenanY> !m Bob
05:34 <nwitch> You're doing good work, Bob!Example
As a nwitch plugin (using config.toml):
[plugins]
nwitch-motivate = trueOr through nwitch's API:
var Nwitch = require('nwitch');
var motivate = require('nwitch-motivate');
var nwitch = new Nwitch({
  irc: {
    address: 'irc.freenode.org',
    port: 6667
  }
});
nwitch.use(motivate());Technically, all nwitch plugins are just slate-irc plugins, so you could also use this as a slate-irc plugin:
var net = require('net');
var irc = require('slate-irc');
var motivate = require('nwitch-motivate');
var stream = net.connect({
  port: 6667,
  host: 'irc.freenode.org'
});
var client = irc(stream);
client.use(motivate());Installation
$ npm install nwitch-motivateAPI
var motivate = require('nwitch-motivate');motivate()
Returns a function that accepts an instance of slate-irc.
1.0.0
11 years ago