Google analytics (universal edition) for Meteor with some Iron Router sugar for tracking page views and doing A/B testing with Content Experiments.
$ meteor add reywood:iron-router-ga
Configure analytics by adding a ga
section to the public
section of your Meteor settings. The only required property is id
which is your Google Analytics tracking ID.
{
"public": {
"ga": {
"id": "UA-XXXX-Y"
}
}
}
For more info on possible values for the configuration options below, check out Google's Advanced Configuration page.
-
create
-- object literalOptions you would like to pass to
ga("create", "UA-XXXX-Y", ...)
. Should have any ofcookieDomain
,cookieName
,cookieExpires
, etc as properties. -
set
-- object literalSettings to apply to the tracker with
ga("set", ...)
. These includeforceSSL
,anonymizeIp
, etc. -
require
-- object literalAdditional tracking options to require with
ga("require", ...)
such as Display Advertising Features or Enhanced Link Attribution. For features likedisplayfeatures
that don't have a corresponding*.js
parameter (aslinkid
does), simply set the property value totrue
. -
trackUserId
-- booleanIf set to
true
, the currently logged in user's ID will be sent with all pageviews, events, etc. Learn more about user ID tracking. Defaults tofalse
.
Advanced configuration example:
{
"public": {
"ga": {
"id": "UA-XXXX-Y",
"create": {
"cookieDomain": "example.com",
"cookieName": "my_ga_cookie",
"cookieExpires": 3600
},
"set": {
"forceSSL": true,
"anonymizeIp": true
},
"require": {
"displayfeatures": true,
"linkid": "linkid.js"
},
"trackUserId": true
}
}
}
Once you have installed this package and added the required configuration, you will have access to the ga
function anywhere in your client-side Meteor code. You can use it just as you would on any other site.
To enable page view tracking and content experiments (discussed below), you will need to add the plugin to your router.
if (Meteor.isClient) {
Router.plugin('reywood:iron-router-ga');
}
Tracking events is the same as always:
ga("send", "event", category, action, label, value);
Tracking page views is accomplished by adding configuration options to Iron Router. You can enable page view tracking for every route site-wide by configuring the router like so:
Router.configure({
trackPageView: true
});
Alternately, you can enable tracking for certain routes individually like so:
Router.route("routeName", {
// ...
trackPageView: true
// ...
});
// ** or **
Router.map(function() {
this.route("routeName", {
// ...
trackPageView: true
// ...
});
});
If you have enabled site-wide page view tracking but want to disable it for a certain route:
Router.route("routeName", {
// ...
trackPageView: false
// ...
});
Each route in your app can be configured with an experiment ID and a list of templates to show for each variation. First, you must set up the experiment in your Google Analytics dashboard. Once that's done, add a contentExperiment
configuration option to the route you want to experiment on (see snippet below for details). The number of templates specified in the variationTemplates
array property must match the number of variations (including the original) configured for the experiment.
All visitors to the site are assigned to one of the variations according to the settings for your experiment (multi-arm bandit, percentage of traffic to experiment, etc). These settings are configured in your Google Analytics dashboard or via Google's API. Returning visitors will see the same variation they saw the first time they visited.
Any route with an experiment assigned to it will also track an event. This event will show up in your analytics dashboard under the category "iron-router-ga". This is a requirement for experiments in order to record a user's chosen variation.
Router.route("routeName", {
// ...
contentExperiment: {
id: "YOUR_EXPERIMENT_ID",
variationTemplates: [ "original", "variation1", "variation2" ]
}
// ...
});
If you are building a Cordova app, you will need to allow your app to access the Google Analytics servers. Add the following snippet to your mobile-config.js
file.
App.accessRule('*.google-analytics.com/*');
If you are using content experiments, you may see the following message in your browser's JavaScript console.
Route dispatch never rendered. Did you forget to call this.next() in an onBeforeAction?
When a route with an experiment is triggered, a JS file specific to your experiment must be loaded from Google in order to select the appropriate variant to show. While this file is loading, iron-router-ga will show your "loading" template and effectively pause the route by not calling this.next()
in onBeforeNext
. In practice, this pause is barely noticeable, but will cause the above message to appear. Once the file is loaded, your route will unpause and continue loading. This behavior appears to be by design in iron-router. If you know different, please set me straight.
If you find a bug or would like to see an improvement made, please file an issue or submit a pull request on GitHub.