kiwiirc / irc-framework

🛠️ A better IRC framework for node.js. For bots and full clients.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Question: Will this framework support multiple IRC server connections?

kamikazechaser opened this issue · comments

I believe kiwiirc uses an in-built bouncer to facilitate multiple connections. Are there any plans to bring such a feature to this framework? At the moment there is no maintained independent bouncer implementation in Node.js.

You can use as many connections as you like in this framework.

let connection1 = new IRC.Client();
connection1.connect({host: 'irc.freenode.net', nick: 'bot1'});

let connection2 = new IRC.Client();
connection2.connect({host: 'irc.freenode.net', nick: 'bot2'});

This is the same way kiwiirc handles it internally.