0.1.0 • Published 9 years ago

99damage-api v0.1.0

Weekly downloads
15
License
GNU
Repository
github
Last release
9 years ago

99Damage API

A NodeJS API for 99damage.de

npm npm npm

How to install

npm install --save 99damage-api

How to use

var damage = require('99damage-api');

damage.getMatches(function(matches) {
    console.log(matches);
});

damage.getMatch(matchId, function(match) {
    console.log(match);
});