Skip to content

timothyac/krunker-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

krunker-api

API to get information from krunker matches

Highlights

  • Clean API
  • Type defs (soon)

Dev

Install

$ npm install

Usage

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);
});

About

API to get information from krunker matches

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published