0.1.1 • Published 7 years ago

nitrapi v0.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

nitrapi NPM version Build Status Dependency Status

NodeJs based SDK for the Nitrapi

Installation

$ npm install --save nitrapi

Usage

var Nitrapi = require('nitrapi');

var api = new Nitrapi("<access token>");

api.getServices(function (services) {
  // successfully got our service list
  console.log(services);
}, function (error) {
  // an error occured
  console.error(error);
});

Documentation

This SDK works very similar to the Nitrapi-PHP SDK. You can read the comments there to find out which parameters most methods expect.

For more information on the capabilities of the Nitrapi, consult the official documentation.

License

MIT © CodingNavi