0.0.1 • Published 10 years ago

inspectletapi v0.0.1

Weekly downloads
4
License
-
Repository
github
Last release
10 years ago

inspectlet-api-node-client

A node.js wrapper for the Inspectlet API.

Installation

Install via npm (Node Packaged Modules):

npm install inspectletapi

Install via git (hosted on GitHub):

git clone git@github.com:jordanpatton/inspectlet-api-node-client.git inspectletapi

Examples

var InspectletAPI = require('inspectletapi');
var insp = new InspectletAPI('username', 'password', true);

insp.getSites(function (error, data) {
  console.log(data);
});

insp.getCaptures('siteId', params, function (error, data) {
  console.log(data);
});