0.2.0 • Published 11 years ago

node-kontagent v0.2.0

Weekly downloads
3
License
-
Repository
github
Last release
11 years ago

node-kontagent

Kontagent Node.js SDK (Unofficial). It's based on JavaScript SDK.

Installation

npm install kontagent

Usage

var KontagentApi = require('kontagent');
var ktApi = new KontagentApi('23476987657438245', { useTestServer: true });
ktApi.trackApplicationAdded('123', {uniqueTrackingTag: 111}, function(err, res) {
  if (err) return console.error(err.stack);
  console.log('ok');
});

Notes

Since node-kontagent uses and http module you may want to adjust http.globalAgent.maxSockets.

In this module semantics successCallback is not a success callback actually. It's supposed to be a regular callback with 2 arguments (err, res) where either err is an Error or res is an http.IncomingMessage.