0.0.1 • Published 11 years ago

up-client v0.0.1

Weekly downloads
7
License
-
Repository
github
Last release
11 years ago

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('someone@email.com', '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