Skip to content
/ trackings Public

Tracking snippets for Google Analytics and Piwik / Matomo

License

Notifications You must be signed in to change notification settings

hay/trackings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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