martynsmith / node-irc

NodeJS IRC client library
GNU General Public License v3.0
1.33k stars 424 forks source link

[Feature request] Add hostname of a nick when join channel #576

Open yhojann-cl opened 1 year ago

yhojann-cl commented 1 year ago

When join in a channel i use:

client.addListener('names', (channel, nicks) => ...);

But nicks is an array with names only and options (+ or @), but if need hostname of each nick need send a whois for each nick. The idea is the client send the hostname or same structure as join event or call join event for each nick when join to a channel.