A promises aware boardgamegeek.com API client.
Will support any of the commands available in the BGG XMLAPI2 documentation
npm install bgg
var bgg = require('bgg');
bgg('user', {name: 'monteslu', guilds: 1})
.then(function(results){
console.log(results);
});