npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

angulartics-google-tag-manager-fork

v0.1.1

Published

Google Tag Manager plugin for Angulartics

Downloads

4

Readme

angulartics-google-tag-manager-fork

NPM version NPM downloads Bower version Dependencies status MIT license Join the Slack chat

Google Tag Manager Google Analytics plugin for Angulartics.

Install

First make sure you've read installation and setup instructions for Angulartics.

Then you can install this package either with npm or with bower.

npm

npm install angulartics-google-tag-manager-fork

Then add angulartics.google.tagmanager as a dependency for your app:

require('angulartics')

angular.module('myApp', [
  'angulartics', 
  require('angulartics-google-tag-manager-fork')
]);

Please note that core Angulartics doesn't export the name yet, but it will once we move it into the new organization.

bower

bower install angulartics-google-tag-manager-fork

Add the <script> to your index.html:

<script src="/bower_components/angulartics-google-tag-manager-fork/dist/angulartics-google-tag-manager.min.js"></script>

Then add angulartics.google.tagmanager as a dependency for your app:

angular.module('myApp', [
  'angulartics', 
  'angulartics.google.tagmanager'
]);

Google Tag Manager

Once you've installed Angulartics into your application, you'll need to perform some configuration in the Google Tag Manager interface. There are two ways to do this; using Google Tag Manager's import functionality, or by manually configuring the required components in Google Tag Manager. To do either, you will need Edit permissions in the Google Tag Manager Container you'd like to use.

Before beginning configuration, confirm which version of Google Analytics you're using in your application. A simple way to test this is to check the Google Analytics snippet, if there is one. If the code looks like the below, you're using Universal Analytics:

ga('create', 'UA-XXXXXX-YY', 'auto');
ga('send', 'pageview');

Alternatively, if the snippet looks like the below, you've got Classic Analytics installed, which is in the process of being deprecated:

_gaq.push(['_setAccount', 'UA-XXXXXX-YY']);
_gaq.push(['_trackPageview']);

If possible, consider switching to Universal Analytics. If neither appear, or you do not have Google Analytics installed, use the Universal Analytics instructions.

Container Import Installation (recommended)

  1. Determine which version of Google Analytics your site uses, Classic or Universal, and then locate the corresponding .json file in the /import directory.
  2. In Google Tag Manager, navigate to the Admin tab.
  3. Under the Container column, select Import Container.
  4. Click Choose Container File and select the .json file you selected.
  5. Select Merge from the radio selector beneath the Choose Container File button.
  6. Select Rename from the radio selector that appears beneath the Merge selector.
  7. Click Continue, then Confirm.
  8. Click the Variables tab in the left-side navigation.
  9. Scroll to the User-Defined Variables section at the bottom of the page and click the Google Analytics Tracking ID - Angulartics Variable.
  10. Edit the Value field by clicking on the Variable and replace it with your companies Google Analytics Tracking ID (a.k.a. UA Number). Save your changes.

Manual Installation

Universal Analytics

6 Variables

Naming and case must match.

  • Name: angulartics page path
    • Type: Data Layer Variable
    • Data Layer Variable Name: page
  • Name: angulartics event category
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventCategory
  • Name: angulartics event action
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventAction
  • Name: angulartics event label
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventLabel
  • Name: angulartics event value
    • Macro Type: Data Layer Variable
    • Data Layer Variable Name: eventValue
  • Name: angulartics event interaction type
    • Type: Data Layer Variable
    • Data Layer Variable Name: nonInteraction
  • (OPTIONAL) angulartics user id
    • Type: Data Layer Variable
    • Data Layer Variable Name: userId

2 Triggers

Name and case must match.

  • Name: Angulartics events
    • Event: Custom Event
    • Event name: event
  • Name: Angulartics pageviews
    • Event: Custom Event
    • Event name: page

2 Tags

Name and case must match.

  • Name: Angulartics Events

    • Product: Google Analytics
    • Type: Universal Analytics
    • Tracking ID: YourGoogleAnalyticsID
    • Track Type: Event
    • Category: {{angulartics event category}}
    • Action: {{angulartics event action}}
    • Label: {{angulartics event label}}
    • Value: {{angulartics event value}}
    • Non-Interaction Hit: {{angulartics event interaction type}}
    • More settings > Fields to Set > name: page, value: {{angulartics page path}}
    • More settings > Fields to Set > name: cookieDomain, value: auto
    • More settings > Fields to Set > name: userID, value: {{angulartics user id}}
    • Fire On: Angulartics events
  • Name: Angulartics Pageviews

    • Product: Google Analytics
    • Type: Universal Analytics
    • Tracking ID: YourGoogleAnalyticsID
    • Track Type: Page View
    • More settings > Field to Set > name: page, value: {{angulartics page path}}
    • More settings > Field to Set > name: cookieDomain, value: auto
    • More settings > Fields to Set > name: userID, value: {{angulartics user id}}
    • Fire On: Angulartics pageviews
Classic Analytics

6 Variables

Naming and case must match.

  • Name: angulartics page path
    • Type: Data Layer Variable
    • Data Layer Variable Name: page
  • Name: angulartics event category
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventCategory
  • Name: angulartics event action
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventAction
  • Name: angulartics event label
    • Type: Data Layer Variable
    • Data Layer Variable Name: eventLabel
  • Name: angulartics event value
    • Macro Type: Data Layer Variable
    • Data Layer Variable Name: eventValue
  • Name: angulartics event interaction type
    • Type: Data Layer Variable
    • Data Layer Variable Name: nonInteraction

2 Triggers

Name and case must match.

  • Name: Angulartics events
    • Event: Custom Event
    • Event name: event
  • Name: Angulartics pageviews
    • Event: Custom Event
    • Event name: page

2 Tags

Name and case must match.

  • Name: Angulartics Events
    • Product: Google Analytics
    • Type: Classic Analytics
    • Tracking ID: YourGoogleAnalyticsID
    • Track Type: Event
    • Category: {{angulartics event category}}
    • Action: {{angulartics event action}}
    • Label: {{angulartics event label}}
    • Value: {{angulartics event value}}
    • Non-Interaction Hit: {{angulartics event interaction type}}
    • More settings > Basic Configuration > Virtual Page Path, value: angulartics page path
    • More settings > Domains and Directories > Domain Name, value: YourDomainName
    • Fire On: Angulartics events
  • Name: Angulartics Pageviews
    • Product: Google Analytics
    • Type: Universal Analytics
    • Tracking ID: YourGoogleAnalyticsID
    • Track Type: Page View
    • More settings > Basic Configuration > Virtual Page Path, value: angulartics page path
    • More settings > Domains and Directories > Domain Name, value: YourDomainName
    • Fire On: Angulartics pageviews

Documentation

User ID Tracking

Universal Analytics, the newest version of Google Analytics, supports tracking users based of an ID that you provide. Typically, this ID is available after a user logs in to your application or service. Providing this ID allows Google Analytics to aggregate across multiple devices and browsers, providing a more holistic view of user interaction with your services. The documentation can provide more insight into the benefits of using the User ID feature. It also stipulates the following:

  • The uid parameter must be set on every hit sent to Google Analytics
  • The uid should be a completely anonymous value, and cannot be a username, or any personally identifiable information (PII); if PII is found in a property, the property will be completely destroyed. This includes hashed email addresses.
  • The uid parameter should only be set while the user is logged in; once logged out, it should not be set on any hits sent to Google Analytics

To configure User ID Tracking, set the $analyticsProvider.settings.ga.userId property to your provided User ID in the module configuration settings.

angular.module('myApp', ['angulartics', 'angulartics.google.tagmanager'])
  .config(['$analyticsProvider', function ($analyticsProvider) {

    $analyticsProvider.settings.ga = {
      userId: myUserIdValue
    };

    ...
  }]);

Alternatively, you may set your User ID by calling $analytics.setUsername() and providing it your userId

$analytics.setUsername(myUserIdValue);

Additional documentation is available on the Angulartics site.

Development

npm install rimraf -g
npm run build

License

MIT