trackings

0.1.1 • Public • Published

trackings

Tracking snippets for Google Analytics and Piwik / Matomo

Instead of adding the Google Analytics and Matomo / Piwik snippets to all your html pages, you can just use this library to include them in your Javascript code.

Install

Using npm:

$ npm install --save trackings

Using yarn:

$ yarn add trackings

trackings can be used as a CommonJS module, AMD (with Require.js) or as a plain old Javacript global.

Usage

ES6

import { GoogleAnalytics, Matomo } from './trackings.js';
 
new GoogleAnalytics('UA-xxxxxx-xx'),
 
new Matomo({
    trackerUrl : '//mysite.com/stats/',
    siteId : 1
});

Old style ES5

<script src="trackings.js"></script>
new trackings.GoogleAnalytics('UA-xxxxxx-xx'),
 
new trackings.Matomo({
    trackerUrl : '//mysite.com/stats/',
    siteId : 1
});

API

GoogleAnalytics(id)

new GoogleAnalytics('UA-xxxxxx-xx'),

Matomo({ trackerUrl, siteId })

new trackings.Matomo({
    trackerUrl : '//mysite.com/stats/',
    siteId : 1
});

License

MIT © Hay Kranen

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i trackings

      Weekly Downloads

      1

      Version

      0.1.1

      License

      MIT

      Unpacked Size

      4.78 kB

      Total Files

      4

      Last publish

      Collaborators

      • hay