Node / NPM client library for TheAnalyticsAPI.com
Easy to integrate Analytics,
- Easily track events from your Node application
- Download the Aggregate totals & Insights
- Have the results pushed into your Datalake or anywhere else via Zapier or Slack with Webhooks
Currently in closed Alpha.
Basic example:
const Analytics = require('@thatapicompany/theanalyticsapi');
const client = new Analytics('writeApiKey');
client.track({
event: 'Signup'
});
n.b. Timestamp would be automatically added on the server.
Typescript / Babel:
import Analytics from '@thatapicompany/theanalyticsapi';
const client = new Analytics('writeApiKey');
client.track({
event: 'Signup'
});