2.0.15 • Published 10 months ago

@push.rocks/smartanalytics v2.0.15

Weekly downloads
-
License
MIT
Repository
-
Last release
10 months ago

smartanalytics

Google Analytics everywhere

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

Why does this package exist?

Tracking users in webapps is common, often to gain insight in who is using what and where to spend dev resources for best efficiency.

Doing the same stuff in apps can be a bit of a hassle. Unnecessary dependencies used by many existing analytics tools make the whole app slow just to gain a little usage info.

Say hello to smartanalytics. :) It features a very slim dependency tree using the native node request module to send posts to a tracking API of your choice.

How do I use this package?

import { Analytics } from 'smartanalytics';
let myAnalytics = new plugins.smartanalytics.Analytics({
  apiEndPoint: 'https://somepubapi.endpoint.com',
  projectId: 'gitzone',
  appName: 'npmts'
});

myAnalytics
  .recordEvent('someEvent', {
    myKey1: 'myValue1',
    myKey2: 'myValue2',
    myDataKey3: 3
  })
  .catch(err => {
    console.log(err);
  });

For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH

repo-footer