node-irc
node-irc copied to clipboard
NodeJS IRC client library
Secret channels are those not showing on the server list  I can join it with any irc client with #channelname. Can't join with irc npm
Have an unexpected error: ```javascript /.../node_modules/irc/lib/irc.js:849 throw err; ^ TypeError: Cannot read properties of undefined (reading 'filter') at chanModes (/.../node_modules/irc/lib/irc.js:300:38) ``` The throw is called from: ```javascript lines.forEach(function iterator(line) {...
When join in a channel i use: ```javascript client.addListener('names', (channel, nicks) => ...); ``` But nicks is an array with names only and options (`+` or `@`), but if need...
`ReferenceError: rawResponse is not defined` at `rawResponse = response[i].split(" ");` when using @vercel/ncc to combine everything into one .js file. Fix is to change line 76 of `client.js` from: ```...
So I'm using this project to "say" blocks of json to the server, and I was having some issues with other clients, in-chan, seeing truncated messages. I tweaked the bot.js...
Here is a small update for SASL. All codes were taken from https://gist.github.com/grawity/8389307.