RevRise Node API
Tracking events server side with RevRise
.. is super easy with node.js!
npm install revrise
Initialize RevRise with your project token:
var revrise = require('revrise')('[token-here-bitte]');
Track as you want to! You have to name your event, provide it with a hash of custom properties, and BOOM - you´re done!
revrise.track('login', {
customKey: 'value',
name: 'Lil\' Jonny',
attempts: 4
});
Optionalz (coming soon)
[TODO] Make better use of RevRise internal tools by providing your events with
some optional settings.