udzura / ikachan-node

Ikachan wrapper for node.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ikachan-node

Ikachan wrapper for node.js

wercker status

Install

$ npm install ikachan-node

Usage

var Ikachan = require('ikachan-node');
var ikachan = new Ikachan('http://irc.example.com:8888/');

ikachan.notice('#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.

About

Ikachan wrapper for node.js

License:MIT License


Languages

Language:JavaScript 100.0%