A node.js library for [Challonge API](http://api.challonge.com/v1)
npm install challonge-nodeA node.js library for Challonge API
js
npm install --save challonge-node
`$3
See tests for full usage
#### Setup
`js
var ChallongeAPI = require('challonge-node');
var challonge = ChallongeAPI.withAPIKey();
`
or
`js
import ChallongeAPI from 'challonge-node';
const challonge = ChallongeAPI.withAPIKey();
`#### Create tournament
`js
challonge.tournaments.create(, ).then(function(tournament) {
console.log(tournament.id);
}
`Testing
`js
npm run test
``challonge-node is available under the MIT license. See the LICENSE file for more info.