Skip to content

Instantly share code, notes, and snippets.

@Gargauth
Created July 6, 2015 20:23
Show Gist options
  • Select an option

  • Save Gargauth/08601654c8c2a1814cf6 to your computer and use it in GitHub Desktop.

Select an option

Save Gargauth/08601654c8c2a1814cf6 to your computer and use it in GitHub Desktop.
Heroku IRC Idler
var irc = require('irc');
var client = new irc.Client('irc.server.com', 'YourNickName', {
userName: "YourUserName",
realName: "YourUserName"
});
client.addListener('registered', function (message) {
client.say("TargetName", "ENTER YOUR INVITE COMMAND HERE");
});
{
"name": "Idler",
"version": "preview",
"description": "Idle in your favorite IRC channel",
"main": "irc.js",
"scripts": {
"start": "node irc.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"irc": "^0.3.7"
}
}
worker: node irc.js
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment