ikachan-node
v0.0.1
Published
Ikachan wrapper for node.js
Downloads
3
Readme
ikachan-node
Ikachan wrapper for node.js
Install
$ npm install ikachan-node
Usage
var Ikachan = require('ikachan-node');
var ikachan = new Ikachan('http://irc.example.com:8888/');
ikachan.notcie('#test', 'Build failed!!!!',
function(response, error) {
if(error == null) {
console.log(response); // log response text
}
}
);
// Ikachan#privmsg also available
Contributing
Usual GitHub way.
License
MIT / See LICENSE.txt.