React Native SDK
@cohorly/react-native is a standalone React Native client. It has no hard dependency on react-native or any storage library - it works out of the box with an in-memory store and upgrades to persistent storage when you inject one.
Install
bashpnpm add @cohorly/react-native# recommended, for persistence across app restartspnpm add @react-native-async-storage/async-storage
Initialize
Call init() once near app launch. Inject AsyncStorage so the distinct id,
queued events, and super properties survive restarts.
tsimport AsyncStorage from "@react-native-async-storage/async-storage";import { init, track, identify, register, people } from "@cohorly/react-native";init({token: "YOUR_PROJECT_TOKEN",storage: AsyncStorage, // omit to fall back to in-memory storage});register({ app_version: "1.2.0" });track("Screen Viewed", { screen: "Home" });identify("user_123");people.set({ plan: "pro" });
API
| Member | Signature | Notes |
|---|---|---|
init | (options) => CohorlyClient | All optional: token, apiHost (defaults to the hosted API), storage, flushInterval, flushAt, fetch, disabled. |
track | (event, properties?) => void | Queue an event. |
identify | (distinctId) => void | Switches identity synchronously, then posts /alias (best effort) when the previous id was anonymous. |
reset | () => void | Clears identity, super properties, and un-flushed events. |
register / unregister | (props) / (key) | Super properties merged into every event. |
people.* | set / setOnce / increment / unset / deleteUser | Queued and sent to /engage. |
flush | () => Promise<void> | Manual flush. |
getDistinctId | () => string | Current distinct id. |
Batching
Events are queued and flushed automatically every 5 seconds or once 20
events have accumulated - both configurable via flushInterval and
flushAt. Queued events are persisted to storage, so nothing is lost if
the app closes before a flush. You can also construct
new CohorlyClient(options) directly for multiple instances or dependency
injection.