1.0.0 • Published 7 years ago

mixerclient v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Mixer Client

CircleCI

Mixer Client is a friendly way to interact with the Mixer API.

Installation

$ npm install mixerclient -S

Usage

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!')
        }
    })
})

Further documentation can be found in the docs directory.

License

MIT