Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 752 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 752 Bytes

analytics.js-loader

This is the segment.com snippet Slightly modified to be a commonJS compatible module.

It's usable with module loaders like browserify or webpack.

Install

npm install analytics.js-loader --save

Usage

var analytics = require('analytics.js-loader')({
  writeKey: 'YOUR_WRITE_KEY',
  // you can skip the first analytics.page() call if needed, #1
  skipPageCall: false
});

analytics.identify('1e810c197e', {
  name: 'Bill Lumbergh',
  email: '[email protected]'
});

analytics.track('Signed Up', {
  plan: 'Startup',
  source: 'Analytics Academy'
});