-
Notifications
You must be signed in to change notification settings - Fork 421
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WebIRC Support #427
Comments
Please read/try the docs here. ask questions on channel ##node-irc (freenode) i idle frequently there. |
@jnull so if I hook in to |
Just realised this is already implemented but isn't mentioned in the documentation. |
@ircer What is already implemented? Did you find your solution? |
@jnull WebIRC Support, what this ticket is about! https://github.com/martynsmith/node-irc/blob/master/lib/irc.js#L59-L64 are the relevant configuration lines. It would help if this was mentioned in the documentation, so that people don't waste time implementing something that is already supported. |
However small bug in that linked code however. https://github.com/martynsmith/node-irc/blob/master/lib/irc.js#L639 wants https://github.com/martynsmith/node-irc/blob/master/lib/irc.js#L62 needed to be changed from |
@ircer maybe PR that fix in? |
@moshmage done. |
Any update on getting it merged then? |
I need to add WebIRC Support to our
node-irc
usage. We have built a webchat that connects to our IRC network but the problem is that we now have 100's of users connecting by the web server IP address and not their real IP address.Before the client sends the PASS, USER or NICK commands it should send:
WEBIRC password user hostname ip
How can I hook in to
node-irc
so that before it sends the PASS, USER or NICK commands it sends another command?The text was updated successfully, but these errors were encountered: