Skip to content

Instantly share code, notes, and snippets.

@bertt
Created May 31, 2017 09:54
Show Gist options
  • Save bertt/51b7303491f34ddbcd7d2401be284d6c to your computer and use it in GitHub Desktop.
Save bertt/51b7303491f34ddbcd7d2401be284d6c to your computer and use it in GitHub Desktop.
Google Analytics sample
"use strict"
let UA_KEY = 'your_Universal_analytics_key (starts with UA)'
var ua = require('universal-analytics');
let visitor = ua(UA_KEY);
let value= 35;
visitor.event('sensor 1', value,function (err){
if (err) return console.log("error:" + err);
console.log('Sent event to GA', 'Gesture', value);
}).send();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment