New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

angulartics

Package Overview
Dependencies
Maintainers
2
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

angulartics - npm Package Versions

134

1.0.2

Diff

timelf123
published 1.0.0 •

Changelog

Source

1.0.0 (2015-12-28)

  • Added devDependency badge
    • Updated all dev deps and fixed karma tests
  • Added userTimings to the known handlers
  • Refactoring - use toddmotto angular styleguide and avoid anonymous functions
  • Hubspot - add register user properties
  • Marketo - fix known user identification (typo)
  • fix - default analytics-on eventType is 'click' #402
  • fix - remove vendor scripts from main field of bower.json #377 #285
Organizational changes

<a name="0.20.3"></a>

timelf123
published 0.20.3 •

Changelog

Source

0.20.3 (2015-12-23)

  • Added SiteSpect plugin for angulartics
  • chore(es6): add support for es6 modules
  • clarify we don't support nuget
  • Fix broken CNZZ plugin
  • remove version from license header in src
  • replace slack with gitter

<a name="0.20.2"></a>

timelf123
published 0.20.2 •

Changelog

Source

0.20.2 (2015-11-17)

Add setting to exclude specific routes from pageview tracking

<a name="0.20.0"></a>

lunks
published 0.20.1 •

lunks
published 0.20.0 •

Changelog

Source

0.20.0 (2015-07-27)

Organizational changes
  • Core clean-up: all plugins will no longer part of Angulartics core, each one will have its own repo
  • CommonJS: all plugins will be packaged for npm, this means they will be importable à la CommonJS module style
  • Moved Google Analytics plugin to angulartics-google-analytics

<a name="0.20.0"></a>

lunks
published 0.19.3 •

Changelog

Source

0.19.3 (2015-07-27)

This is just a maintenance release so people who had their builds broken by 0.19.2 can safely upgrade 0.19.x.

<a name="0.19.2"></a>

lunks
published 0.19.0 •

Changelog

Source

0.19.0 (2015-06-27)

Features
  • Added support for Inspectlet (@geordie--)
  • Added New Relic Insights support (@gampleman)
  • Added Clicky support (@corinna000)
  • Added additional account names config option for Google Analytics (@ignigena)
Bug Fixes
  • Changed GTM tag to generic tag (@Nickdouille)
  • Updated to Waypoints 3.1.1 and removed jQuery dependency (@corinna000)
lunks
published 0.18.0 •

Changelog

Source

0.18.0 (2015-05-22)

Bug Fixes
  • Omniture page tracking now correctly sends page path (@SuperheroicCoding)
  • Google Analytics plugin now properly sends properties with falsy values (i.e. 0) (@birge)
  • trackRelativePath option is now properly honoured by angulartics. (@0xR)
Features
  • Adding page property to Google Analytics (@ormagomy)
  • Google Analytics plugin now sends events to a default category 'Event' so you don't need to set this if you don't want to. (@trolleycrash)
  • GoSquared support. See the appropriate plugin for options. (@pjkelly)
  • Google Analytics plugin now has support for username tracking. (@ravishivt)
  • Woopra plugin now can identify the user and set user properties. (@alfaproject)
  • Segment plugin now has support for the registerSetAlias method. (@leore)

<a name="0.17.2"></a>

timelf123
published 0.17.2 •

Changelog

Source

0.17.2 (2015-01-15)

Bug Fixes
  • Added missing nuspec files (https://github.com/markvp) 8134f82e43d04c8ae6dd95731151ad81ab7aabc0
  • Remove scope from analytics-on directive. Closes #195 (https://github.com/jantimon) e8bc48eea9c0aa47cd3201d36b02ea802b5b4194
  • Inline injection of $location dependency (only load $location service if needed). Closes #29 (https://github.com/elegantcoder) cb20f5caf02d00fd942315520a18491168fae73f
  • Segment - manually set the path and url becuase segment's JS lib always reports the path as '/' in hashbang mode 8543ef8d8cf6a933af78d9a5737c327042913a34
  • Google Analytics - check for GA before _gaq (https://github.com/mkolodny) c3b33a464547a4bed39541584f93cf9542a46f5f
  • Fix jquery-waypoints doesn't exist (may need to run bower cache clean ) e68531de81526101aedca91e9721c9f0d2de322f
    • Big thanks to:
      • https://github.com/kentcdodds
      • https://github.com/imakewebthings
      • https://github.com/luisfarzati
Features
  • Segment - identify user. Registered setUserProperties / setUserPropertiesOnce with an API to match the identify method from segment.com: https://segment.com/docs/api/tracking/identify/ (https://github.com/Normalised) 66e66f0a5a229390d1b2469ad997f13e7417c42e
    • Add optional parameters for event tracking event, properties, options, callback
  • Add support for Google Tag Manager on Cordova resolves #258 using Tag Manager plugin. (https://github.com/kraihn) c77833d7608e865bd6b0879055c84c8b1b149735
  • Add a plugin for http://tongji.baidu.com (https://github.com/miller) efbcac271ee673a11d755c2f1c387d2378b3ce98
  • Google Cordova support with https://github.com/danwilson/google-analytics-plugin (https://github.com/emaV) d74387def225e49b6d6ab278d6882b14e38d79a9
  • New developer mode to prevent sending data. Set developerMode: true in $analyticsProvider to stop sending data (https://github.com/tomasescobar) a0cce769f569dfb46f765eda1a97eccc2748c3f9
  • Kissmetrics - enable setUsername and setUserProperties (https://github.com/jminuscula) d74387def225e49b6d6ab278d6882b14e38d79a9
  • GA multi-account modification (https://github.com/robertbak) 047815f1891e7b2dfc4a4ec666b25afaca65c70d Uses a $analyticsProvider.settings.ga object for configuration, which after initing multiple analytics accounts like this:
    ga('create', 'UA-XXXXXX-XX');
    ga('create', 'UA-XXXXXX-XY', 'auto', {'name': 'additionalTracker1'});
    ga('create', 'UA-XXXXXX-XZ', 'auto', {'name': 'additionalTracker2'});

allows to configure the additional providers on startup:

config(function ($analyticsProvider) {
    $analyticsProvider.settings.ga.additionalAccountNames = ['additionalTracker1', 'additionalTracker2'];
  });

You can also change the configuration while running the app which, while not the most elegant solution, allows sending only some events to multiple accounts by:

 $analyticsProvider.settings.ga.additionalAccountNames = ['additionalTracker1'];
 $analytics.eventTrack('eventName');
 $analyticsProvider.settings.ga.additionalAccountNames = [];

<a name="0.17.1"></a>

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc