twitch-analyzer
v0.2.16
Published
Tool to detect bots on Twitch.tv streams
Downloads
11
Readme
Installation
npm install twitch-analyzer
This module depends on request-promise and bluebird.
Usage
var analyzer = require('twitch-analyzer');
analyzer.setkey(config.client_id);
// Setting the twitch api key to bypass the rate limits
// This is optional
analyzer.stream('TSM_Dyrus')
.then(function(stream) {
console.log(stream.name + ' has ' + stream.viewers + ' viewers');
});