EventNative JavaScript Library
EventNative is an open source, high-performance event collection service. Read more:
Install
npm install --save @jitsu/eventnative
or yarn add @jitsu/eventnative
Usage
Full version of JavaScript integration can be found here. A simplified version is presented below
import eventN from '@jitsu/eventnative';
eventN.init({
"key": "<if key>",
"tracking_host": "<tracking host>",
"segment_hook": if eventN should listen to Segment's analytics.js events,
"ga_hook": if eventN should listen to Google Analitics event
});
// push user info
eventN.id({ ...user properties});
// push event
eventN.track('pageview');