A nickserv bot for your irc server needs.
var Nickie = require('nickie';
var nickie = new Nickie('irc.myircserver.net');Options can be
nick- Nick of the bot for Nickie. Defaults toNickServ.ops- A hash of nicks that have elevated access.networkServices- A hash of special nicks that are part of the network. By default containsnickservandchanserv.maxAccounts- Number of maximum accounts that can be associated with an email.minToWait- Number of minutes to force a user to wait before they can register their nick.store- Storage to use to keep track of nicks. Defaults to memory store.
Should be called when a user connects to the server. Returns a promise if no callback is given.
Should be called when a user disconnects from the server. Returns a promise if no callback is given.
npm install nickie
Tests are written with mocha
npm testMIT