Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@LiorB-D
Created June 19, 2021 02:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LiorB-D/f30942dc11f94887fa40e3d1aac637ec to your computer and use it in GitHub Desktop.
Save LiorB-D/f30942dc11f94887fa40e3d1aac637ec to your computer and use it in GitHub Desktop.
const client = new tmi.Client({
channels: [ 'THE_NAME_OF_THE_CHANNEL' ]
});
client.connect();
client.on('message', (channel, tags, message, self) => {
// What we want to happen when a comment occurs
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment