This module is a client for the reportr API. The APi is promsie based.
$ npm install reportr-api
varReportr=require("reportr-api");// Create a client instancevarclient=newReportr({host: "http://example.com",auth: {username: "Me",password: "test"}});// Post an eventclient.postEvent("test",{a: 1});