API to get information from krunker matches
- Clean API
- Type defs (soon)
- Built with Node.js.
- Built with request-promise.
$ npm install
const { getMatchInformation } = require("./index");
getMatchInformation("MIA:uqdik")
.then(match => console.log(match))
.catch(err => console.log(err));
You can also use your favorite http client and still parse the data
const rp = require("require-promise");
const { Match } = require("./index");
rp(params).then(data => {
let newMatch = new Match(data);
});