up-client
v0.0.1
Published
Node.js client for the (unofficial) Jawbone UP API
Downloads
5
Readme
up-client
Node.js client for the (unofficial) Jawbone UP API
Installation
npm install up-client
Basic Use
var up = require('up-client');
// First, let's authorize a user and get their unique id (XID)
up.authorize('[email protected]', 'somePassword', function (err, xid) {
// Next, let's take a look at their activity summary
up.summary(xid, function (err, result) {
console.dir(result); // Ta da!
});
});
Testing
npm test