A React Native client for Segment. The hassle-free way to integrate analytics into any application.
This library is based on its node counterpart, analytics-node. Despite being designed to run on react-native, it will also work in browsers (via webpack or browserify) and even in nodejs. You only need to include fetch for browsers or node-fetch for nodejs or io.js.
Installation
npm install analytics-react-native
Usage
; const analytics = YOUR_WRITE_KEY; analytics; analytics;
Configuration
The second argument to the Analytics constructor is an optional object to configure the module.
const analytics = YOUR_WRITE_KEY host: 'http://localhost/' // Host where reports will be send. Useful for debug. flushAt: 20 // The number of messages to enqueue before flushing. flushAfter: 10000 // The number of milliseconds to wait before flushing the queue automatically.;
Documentation
Documentation is available at https://segment.com/libraries/node.
Differences from analytics-node
Screen method
In addition to methods available in analytics-node, documented above, screen method is available. The screen method lets you you record whenever a user sees a screen of your mobile app, along with optional extra information about the page being viewed.
You’ll want to record a screen event an event whenever the user opens a screen in your app. This could be a view, fragment, dialog or activity depending on your app.
You can call it using exactly the same params as page method.
analytics;