0.1.1 • Published 8 years ago
nitrapi v0.1.1
nitrapi
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