Giter Site home page Giter Site logo

matomo-ts's Introduction

matomo-ts

A client wrapper for the Matomo JS library. Written in TypeScript, and compiled with tsc and webpack.

Features

Installation

yarn add matomo-ts

Usage with TypeScript

import Matomo from 'matomo-ts';

Matomo.default().init('https://your-matomo-tracker-endpoint', YOUR_SITE_ID, {/*** your optional args ***/});

Matomo.default().push(['any', 'matomo', 'raw', 'commands']);

Matomo.default().trackPageView('my-page-name');

// Call this after every DOM updates, if you want outlinks tracking.
Matomo.default().trackLinks();

Matomo.default().trackEvent('my-category', 'my-action', { name: 'optiona-name', value: 42 });

Matomo.default().setUserId('Anonymized userId');
Matomo.default().resetUserId();

Matomo.default().trackEcommerceOrder('my-orderId', 424242 /*** grandTotal ***/);
A/B testing
import Matomo, { ABTest, Variation, IEvent } from 'matomo-ts';

Matomo.default().init('https://your-matomo-tracker-endpoint', YOUR_SITE_ID, {/*** your optional args ***/});

const original = new Variation('my-original');
original.setPercentage(50);
original.setActivate((event: IEvent) => {/*** do something ***/});

const variation = new Variation('my-variation');
variation.setPercentage(50);
variation.setActivate((event: IEvent) => {/*** do something ***/});

const abTest = new ABTest('my-ab-test');

abTest.setPercentage(100);
abTest.setStartTime('2017/08/25 00:00:00 UTC');
abTest.setEndTime('2020/05/21 23:59:59 UTC');

abTest.addIncludedTarget({
    attribute: 'url',
    inverted: '0',
    type: 'equals_simple',
    value: 'https://my-website-url',
});

abTest.addExludedTarget({ /*** other matomo rules ***/ });

abTest.setTrigger(() => true);

abTest.addVariation(original);
abTest.addVariation(variation);
Matomo.default().trackABTest(abTest);

Development

TSLint is used as a linter, you can run yarn lint to run it.

Build

Just run yarn build, it will clean and generate:

  • ES5: /lib
  • ES6: /lib-esm
  • Bundle: /_bundles (with minified version for the browser)

matomo-ts's People

Contributors

solomon23 avatar

Stargazers

 avatar Gautier avatar Alexis Rinaldoni avatar Pavel Sevcik avatar

Watchers

James Cloos avatar Seiji Fouquet avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.