Skip to content

Instantly share code, notes, and snippets.

@thebigbad
Created December 21, 2010 02:48
Show Gist options
  • Select an option

  • Save thebigbad/749412 to your computer and use it in GitHub Desktop.

Select an option

Save thebigbad/749412 to your computer and use it in GitHub Desktop.
testing node-irc
var Client = require('irc').Client;
var client = new Client('example.com', 'joe', { port: 6601, secure: true });
client.on('motd', function () {
client.join('#test', function () {
client.say('#test', 'holy shit that was easy');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment