0.0.1 • Published 10 years ago

co-highrise v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

co-highrise

a wrapper of node-highrise-api for generators.

Installation

$ npm install co-highrise

Usage

var co = require('co');
var highrise = require('co-highrise');

var client = new highrise({
  username: '<company-username>',
  token: '<user-token>'
});

co(function *() {
  var people = yield client.people.get();
  console.log(people);
})();

References

License

The MIT License (MIT)