Hey,
thanks for the answer. So I was able to connect with the chat. Now I would like to know, what information I am actually able to get? So for example:
twitch.on('message', (message) => {
console.log(message);
});
’message’ seems to be the filter for “Just react, when something was written in the chat” and (message) is for pointing at this key to get its value, in this case the actuall written message.
But beside ‘message’, what other filters can I use? Or is there even a word for “Tell me always, no matter what”?
Same with (message): Is there a word for giving me the complete content and not just certain keys?