1.0.1 • Published 7 years ago

bgg v1.0.1

Weekly downloads
16
License
BSD-2-Clause
Repository
github
Last release
7 years ago

BGG

A promises aware boardgamegeek.com API client.

Will support any of the commands available in the BGG XMLAPI2 documentation

install

npm install bgg

Usage

// all options are optional
var options = {
  timeout: 10000, // timeout of 10s (5s is the default)

  // see https://github.com/cujojs/rest/blob/master/docs/interceptors.md#module-rest/interceptor/retry
  retry: {
    initial: 100,
    multiplier: 2,
    max: 15e3
  }
}

var bgg = require('bgg')(options);

bgg('user', {name: 'monteslu', guilds: 1})
  .then(function(results){
    console.log(results);
  });
1.0.1

7 years ago

1.0.0

8 years ago

0.2.2

9 years ago

0.2.1

11 years ago

0.2.0

11 years ago

0.1.0

11 years ago