0.0.1 • Published 10 years ago

eportaljs v0.0.1

Weekly downloads
14
License
MIT
Repository
-
Last release
10 years ago

eportaljs - e-portal books api js wrapper

Build Status e-portaljs provides an interface to OAuth based e-Portal restful api. Currently it only supports two-legged authentication mechanism and book resource.

Installation

via npm:

npm install eportaljs

Usage

var eportal = require('eportaljs')
  , params = {api_host: "somewhere", api_key: "key", api_secret: "secret"};

var eportalClient = new eportal(params);

eportalClient.addBook(book, function (err, data) {
  console.log(err, data);
});

Tests

$ npm test
$ make test-cov

MIT License