Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.25 KB

File metadata and controls

42 lines (29 loc) · 1.25 KB

nitrapi NPM version Build Status Dependency Status

Node.js 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