Interact with chat and make requests to Twitch API.
const token = 'cfabdegwdoklmawdzdo98xt2fo512y' const clientId = 'uo6dggojyb8d6soh92zknwmi5ej1q2' const username = 'ronni' const twitchJs = new TwitchJs({ token, clientId, username }) twitchJs.chat.connect().then(globalUserState => { // Do stuff ... }) twitchJs.api.get('channel').then(response => { // Do stuff ... })
Update client options.
Generated using TypeDoc
Interact with chat and make requests to Twitch API.
Initializing
const token = 'cfabdegwdoklmawdzdo98xt2fo512y' const clientId = 'uo6dggojyb8d6soh92zknwmi5ej1q2' const username = 'ronni' const twitchJs = new TwitchJs({ token, clientId, username }) twitchJs.chat.connect().then(globalUserState => { // Do stuff ... }) twitchJs.api.get('channel').then(response => { // Do stuff ... })