Skip to content
Micheal Harker edited this page Aug 7, 2014 · 5 revisions

API Reference

Client(info)

Initialize a new IRC client connection using the information provided in info.

var client = Client({
	'name': 'freenode', // Optional
	'host': 'chat.freenode.net', // Required
	'port': 6697, // Optional
	'ssl': true, // Optional
	'nick': 'nickname', // Required
	'username': 'test', // Optional
	'realname': 'Testing Robot' // Optional
});

Clone this wiki locally