This a module to make interacting with the stathat.com API easy.
npm install stathat
var stathat = require('stathat');
stathat.trackEZCount('you@example.com', 'messages sent - female to male', 3,
function(status, json) {
console.log("status: " + status);
console.log("json: " + json);
});
Track a counter using the EZ API. stat_name
can be a new stat name and
you can create new stats for your account in the middle of your code
without having to create them on the stathat.com site. The callback is
called with the status of the call and the json response.
Track a value using the EZ API. stat_name
can be a new stat name and
you can create new stats for your account in the middle of your code
without having to create them on the stathat.com site. The callback is
called with the status of the call and the json response.
Track a counter using the classic API. Get user_key
and stat_key
from the details page for a stat on stathat.com.
The callback is called with the the status of the call and the json response.
Track a value using the classic API. Get user_key
and stat_key
from the details page for a stat on stathat.com.
The callback is called with the the status of the call and the json response.
To submit requests via HTTPS instead of HTTP (the default), do the following once:
var stathat = require('stathat');
stathat.useHTTPS = true;
All subsequent requests will use HTTPS.
You can find more examples using this module on stathat.com/examples.
Contact the StatHat programmers on twitter: @stathat.
Written by Patrick Crosby Email me directly: patrick at the name of this module dot com