/bgg

boardgamegeek API client for Node.js

Primary LanguageJavaScript

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

var bgg = require('bgg');

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