Created
October 8, 2014 20:26
-
-
Save abackstrom/c38253a4fcf0b54b96dc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var irc = require('irc'); | |
var client = new irc.Client('irc.freenode.net', 'somebot', { | |
channels: ['##remotes'], | |
}); | |
client.addListener('message##remotes', function (from, to, message) { | |
client.say("##remotes", from + ": i agree"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment