node-irc icon indicating copy to clipboard operation
node-irc copied to clipboard

NodeJS IRC client library

Results 7 node-irc issues
Sort by recently updated
recently updated
newest added

https://github.com/Throne3d/node-irc/blob/2a5f46d4c1cd7fd7a9929a24bcb9879585b5cd5a/lib/irc.js#L756-L762 In some cases, it's useful to connect with a server password and a SASL password, so it might be useful to have a separate config option for SASL password...

Is it possible to implement ChanServ and OperServ to that library? Because some of commands returns only notice and don't have spesific status codes (etc 376,229).

This is likely to be a big task, since I'm going to want to go over the code, the API, and the IRC spec, to make sure they all line...

task
idea

Standard IRC `JOIN` messages look like this: ``` :nick!ident@host JOIN #channelname ``` IRCv3 `JOIN` messages look like this: ``` :nick!ident@host JOIN #channelname * :Fusl ``` or ``` :nick!ident@host JOIN #channelname...

Maybe this is meant to be there? Not sure. Investigate it. See https://github.com/Throne3d/node-irc/commit/ba4f556433beea09baac6b4567fcac70961adb82#diff-eece59382c03dab6d6469ad664eb3a0bR25.

bug
task

The documentation for the `'notice'` event (inherited from node-irc) says that if the notice is from the server, then `nick` is `null`. However, server notices actually have a `nick` of...