Hey folks.
I have a PHP based CMS, that is accessed thru nodejs acting as a gateway to NGINX. This is choosen, so I can run
socket.io and the web on the same port. Now, a friend asked me if I could write an IRC interface to the chat?
Is there any NodeJS module, or C/C++ library you know, that I could use to create my personalized IRC server, in which I can modify the commands to produce output, user listings, room lists and alike in order to bridge the two together? The original chat uses mysql for permanent storage,
socket.io for momentarily transfer. Redis’ Pub/Sub is used to distribute events across processes. This could easily include the chat server(s).
Kind regards, Ingwie.