/ipboard-api

Node.js wrapper for the Ipboard Community

Primary LanguageJavaScriptMIT LicenseMIT

ipboard-api

NPM

npm version

Node package for interact with your Ipboard Community.

Installation

$ npm install ipboard-api

or

$ npm install git://github.com/Raesta/ipboard-api.git

Example

var IpboardAPI = require('ipboard-api');

var Ipboard = new IpboardAPI('YOURAPIURL', 'YOURAPIKEY');

Ipboard.members.getAll(null, function(result) {
  console.log(result);
});

Ipboard.members.getAll({ page: 2 }, function(result) {
  console.log(result);
});

Help

if you need more information, refer to the Wiki

Todo

  • improve error system