0.0.14 • Published 3 years ago

@bna/analytics-plugin-ga v0.0.14

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

Google Analytics

How to use

Below is an example of how to use the browser plugin.

Using npm:

import Analytics from '@bna/analytics';
import Ga from '@bna/analytics-plugin-ga';

const analytics = Analytics({
  app: 'awesome-app',
  plugins: [
    Ga({
      id: 'UA-167308739-1',
    }),
  ],
});

/* Track a page view */
analytics.page();

/* Track a custom event */
analytics.track('playedVideo', {
  category: 'Videos',
  label: 'Fall Campaign',
  value: 42,
});

/* export the instance for usage in your app */
export default analytics;