https://github.com/shaunlwm/node-overwatch-disciplinetracker
😡 Overwatch League Player Discipline Tracker
https://github.com/shaunlwm/node-overwatch-disciplinetracker
overwatch overwatch-api overwatch-js overwatch-league overwatch-league-api
Last synced: 3 months ago
JSON representation
😡 Overwatch League Player Discipline Tracker
- Host: GitHub
- URL: https://github.com/shaunlwm/node-overwatch-disciplinetracker
- Owner: ShaunLWM
- License: mit
- Created: 2018-12-28T14:28:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T15:13:55.000Z (over 3 years ago)
- Last Synced: 2025-03-18T09:00:04.714Z (over 1 year ago)
- Topics: overwatch, overwatch-api, overwatch-js, overwatch-league, overwatch-league-api
- Language: JavaScript
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# node-overwatch-disciplinetracker
Overwatch League Player Discipline Tracker
Retreive stats from the official [Overwatch League Player Discipline Tracker](https://overwatchleague.com/en-us/news/22823906/2019-player-discipline-tracker)
## Install
```
$ npm install node-overwatch-disciplinetracker
```
or
```
$ yarn add node-overwatch-disciplinetracker
```
## Usage
```js
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](https://github.com/ShaunLWM)