zeroviscosity / aurelia-google-analytics

An Aurelia.io plugin that adds Google Analytics page tracking to your project.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Aurelia-Google-Analytics

An Aurelia plugin that adds Google Analytics page tracking to your application with just a small amount of configuration. Set it up once and forget about it.

This plugin was built based on this blog post.

Getting Started

  • Install aurelia-google-analytics
jspm install aurelia-google-analytics

# or ...
npm install aurelia-google-analytics --save
  • Use the plugin in your app's main.js:
export function configure(aurelia) {
    aurelia.use.plugin('aurelia-google-analytics', config => {
			config.init('<Your Tracker ID>');
			config.attach({
				logging: {
					enabled: true // Set to `true` to have some log messages appear in the browser console.
				},
				pageTracking: {
					enabled: true // Set to `false` to disable in non-production environments.
				},
				clickTracking: {
					enabled: true // Set to `false` to disable in non-production environments.
				},
				exceptionTracking: {
					enabled: true // Set to `false` to disable in non-production environments.
				}
			});	
		});
		
    aurelia.start().then(a => a.setRoot());
}
  • If you are using Aurelia CLI, you need to add following two libraries to your bundle dependencies.
          "deepmerge",
          {
            "name": "aurelia-google-analytics",
            "path": "../node_modules/aurelia-google-analytics/dist/amd",
            "main": "index"
          }

In order to use the click tracking feature, each HTML element you want to track must contain a data-analytics-category and data-analytics-action attribute. data-analytics-label and data-analytics-value are supported and optional.

Building from source

Install dependencies

npm install

Then

gulp build

The result is 3 module formats separated by folder in dist/.

Dependencies

Pull Requests

Yes, please!

About

An Aurelia.io plugin that adds Google Analytics page tracking to your project.

License:MIT License


Languages

Language:JavaScript 100.0%