trackings
v0.1.1
Published
Tracking snippets for Google Analytics and Piwik / Matomo
Downloads
5
Maintainers
Readme
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