Mixer Client is a friendly way to interact with the Mixer API.
$ npm install mixerclient -S
let Mixer = require('mixerclient')
let mixer = new Mixer('MIXER_TOKEN_HERE')
mixer.on('ready', async () => {
let channel = await mixer.join()
channel.on('message', msg => {
if(msg.content == 'ping') {
msg.reply('pong!')
}
})
})
mixer.init()
No token? Go to https://connormcf.com/mixeroauth/.
Further documentation can be found in the documentation directory in the repo.
MIT