google-ua

2.0.0 • Public • Published

NPM version NPM version

google-ua

Google Universal Analytics tracking snippet

Installation

$ npm install -S google-ua

API

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);
 

License

MIT

Package Sidebar

Install

npm i google-ua

Weekly Downloads

1

Version

2.0.0

License

MIT

Last publish

Collaborators

  • pirxpilot