Skip to content

Latest commit

 

History

History
43 lines (27 loc) · 764 Bytes

File metadata and controls

43 lines (27 loc) · 764 Bytes

node-overwatch-disciplinetracker

Overwatch League Player Discipline Tracker

Retreive stats from the official Overwatch League Player Discipline Tracker

Install

$ npm install node-overwatch-disciplinetracker

or

$ yarn add node-overwatch-disciplinetracker

Usage

const owl = require('node-overwatch-disciplinetracker');

owl((error, results) => {
    if (error) {
        return console.error(error);
    }

    console.log(results);
});

API

owl(callback)

Returns a callback with error and results as parameters.

Contains lastUpdated & players information in json.

License

MIT © ShaunLWM