Google Universal Analytics tracking snippet
$ npm install -S google-ua
Activate Google Analytics on the page and track page
require('google-ua')("UA-XXXX-X");
Alternatively you can define ua property ID as a data attribute of document body
<body data-ua-property-id="UA-XXXX-X">
Check test/index.html for example.
Optional fields
parameter lets you set general tracker fields before the pageview
event is sent.
require('google-ua')("UA-XXXX-X", {
anonymizeIP: true,
forceSSL: true,
userId: 'as8eknlll'
});
// set fields, retrieve property ID from data attribute of document body
require('google-ua')({
anonymizeIP: true,
forceSSL: true,
userId: 'as8eknlll'
});
You can prevent snippet from sending pageview
event automatically by setting the first parameter to false
// initilize tracker, do not send `pageview` event
require('google-ua')(false, "UA-XXXX-X")
// initialize tracker, do not send `pageview` event, retrieve property ID from data attribute of document body
require('google-ua')(false);
MIT