Overwatch League Player Discipline Tracker
Retreive stats from the official Overwatch League Player Discipline Tracker
$ npm install node-overwatch-disciplinetracker
or
$ yarn add node-overwatch-disciplinetracker
const owl = require('node-overwatch-disciplinetracker');
owl((error, results) => {
if (error) {
return console.error(error);
}
console.log(results);
});
Returns a callback with error
and results
as parameters.
Contains lastUpdated
& players
information in json.
MIT © ShaunLWM