UNPKG

circl

Version:

Concise IRC client library

8 lines (7 loc) 308 B
circl = require("./lib/circl.js"); irc = new circl.IRCClient("circl", 8, [ "#circl-test" ], "irc.freenode.net", 6667, true); irc.addTrigger(/^PING (.+)/, function(groups) { console.log("Ping with message " + groups[1]); }); irc.connect(irc.socket); setTimeout(function () { irc.socket.end() ; }, 30000);