nwitch is a simple, pluggable IRC bot written in JavaScript and designed to work in Node.js.
nwitch was initially conceived as a TwitchTV chat moderation bot, whose functions would be defined through individual plugins. However, its scope has since widened, considering how it is the plugins that choose whether to be specific to TwitchTV or not.
Currently, nwitch is in early development. There are no guarantees that anything is working at any particular point in time.
$ npm install nwitch
var Nwitch = require('nwitch');
Creates a new Nwitch instance with options config
:
config.irc.address
config.irc.port
config.account.username
config.account.password
config.account.channel
Adds the given plugin
function. Returns nwitch
for chaining.