angulartics-webtrends-analytics v1.0.7
angulartics-webtrends-analytics
Webtrends Analytics plugin for Angulartics.
Install
First make sure you've read installation and setup instructions for Angulartics.
Note: This plugin requires that you have an Analytics account with Webtrends, and have been allocated a DCSID or Infinity Tag ID.
Then you can install this package either with npm
or with bower
.
npm
npm install angulartics-webtrends-analytics
Then add angulartics.webtrends.analytics
as a dependency for your app:
require('angulartics')
angular.module('myApp', [
'angulartics',
require('angulartics-webtrends-analytics')
]);
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-webtrends-analytics
Add the <script>
to your index.html
:
<script src="/bower_components/angulartics-webtrends-analytics/dist/angulartics-webtrends-analytics.min.js"></script>
Then add angulartics.webtrends.analytics
as a dependency for your app:
angular.module('myApp', [
'angulartics',
'angulartics.webtrends.analytics'
]);
Documentation
Documentation is available on the Angulartics site.
Contributing
If you use Webtrends Analytics and want to contribute with code/documentation/examples, please submit a pull request or open an issue.
Development
npm run build