Skip to content

Instantly share code, notes, and snippets.

@oskosk
Created January 23, 2015 19:34
Show Gist options
  • Save oskosk/7405fcf06c59d5c6fc5c to your computer and use it in GitHub Desktop.
Save oskosk/7405fcf06c59d5c6fc5c to your computer and use it in GitHub Desktop.
var irc = require('irc');
var client = new irc.Client('chat.freenode.net', 'osk-bot2', {
channels: ['#taringa'],
});
client.addListener('message', function (from, to, message) {
console.log("From %s: %s", from, message);
if (message === "osk-bot go!" && from === "osk") {
client.say("#taringa", "Roger that !");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment