This is a node module for ixIRC that is using their API. It can be used in two ways. Both as a standalone cli or through module inclusion in your own module.
If you are using the module as cli you probably want to install it globally, otherwise locally.
[sudo] npm install [-g] domolicious/ixirc
ixirq -q <linux+ubuntu> -c <channel id>
var ixIRC = require("ixirc");
var client = new ixIRC();
var search = client.search({ q: "linux+ubuntu", cid: 92 });
search.then(function(data)
{
data.results.forEach(function(result)
{
console.log(result.name);
});
});