Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.16 KB

README.md

File metadata and controls

45 lines (31 loc) · 1.16 KB

analitiks

A 650b Google Analytics client for performance maniacs

This project is a non-official implementation of a Google Analytics JS client.

It does not uses cookies so is intendend only for projects that doesn't have strict requirements on user-tracking on Anlytics.

Installation

$ npm install analitiks

Usage

import { setup, trackPageView, trackEvent } from "https://cdn.skypack.dev/analitiks";

setup('UA-123456-1');
trackPageView();

document.getElementById('mybutton').addEventListener('click', () => {
    trackEvent('category', 'action', 'label', 1);
});

Anonymous mode!

This client supports also an anonymous mode where:

Example:

import { setup, trackPageView, trackEvent } from "https://cdn.skypack.dev/analitiks";

setup('UA-123456-1', true /* enables anonymous mode */);
trackPageView();

document.getElementById('mybutton').addEventListener('click', () => {
    trackEvent('category', 'action', 'label', 1);
});