tmijs / tmi.js

💬 Javascript library for the Twitch Messaging Interface. (Twitch.tv)
https://tmijs.com
MIT License
1.54k stars 216 forks source link

How to join multiple channels #445

Closed ghost closed 3 years ago

ghost commented 3 years ago

How can i make the bot connect to more than 1 channel

AlcaDesign commented 3 years ago

Just set multiple channels in the channels option or call join after connecting.

const client = new tmi.Client({
    /* ... */
    channels: [ 'alca', 'ninja', 'whoever' ]
});