@aayushgarg14/expo-mixpanel-analytics 中文文档教程

发布于 4年前 浏览 24 项目主页 更新于 3年前

Expo Mixpanel Analytics

Mixpanel 集成,用于与基于 Expo 构建的 React Native 应用程序一起使用。

Installation

npm install --save @aayushgarg14/expo-mixpanel-analytics

Import

您的 React Native 应用程序的屏幕分辨率、应用程序名称、应用程序 ID、应用程序版本、设备信息和多个其他参数将自动解析并随每个事件一起发送。

import ExpoMixpanelAnalytics from 'expo-mixpanel-analytics';

Usage

const analytics = new ExpoMixpanelAnalytics(MIXPANEL_TOKEN);

analytics.alias(UNIQUE_ID);

analytics.identify(UNIQUE_ID);

analytics.track("Signed Up", { "Referred By": "Friend" });

analytics.people_set({ "$first_name": "Joe", "$last_name": "Doe", "$email": "joe.doe@example.com", "$created": "2013-04-01T13:20:00", "$phone": "4805551212", "Address": "1313 Mockingbird Lane", "Birthday": "1948-01-01" });

analytics.people_set_once({ "First login date": "2013-04-01T13:20:00" });

analytics.people_unset([ "Days Overdue" ]);

analytics.people_increment({ "Coins Gathered": 12 });

analytics.people_append({ "Power Ups": "Bubble Lead" });

analytics.people_union({ "Items purchased": ["socks", "shirts"] });

analytics.people_delete_user();

analytics.reset();

References

https://mixpanel.com/help/reference/http

Expo Mixpanel Analytics

Mixpanel integration for use with React Native apps built on Expo.

Installation

npm install --save @aayushgarg14/expo-mixpanel-analytics

Import

Your React Native app's screen resolution, app name, app ID, app version, device information and multiple other parameters will be automatically resolved and sent with each event.

import ExpoMixpanelAnalytics from 'expo-mixpanel-analytics';

Usage

const analytics = new ExpoMixpanelAnalytics(MIXPANEL_TOKEN);

analytics.alias(UNIQUE_ID);

analytics.identify(UNIQUE_ID);

analytics.track("Signed Up", { "Referred By": "Friend" });

analytics.people_set({ "$first_name": "Joe", "$last_name": "Doe", "$email": "joe.doe@example.com", "$created": "2013-04-01T13:20:00", "$phone": "4805551212", "Address": "1313 Mockingbird Lane", "Birthday": "1948-01-01" });

analytics.people_set_once({ "First login date": "2013-04-01T13:20:00" });

analytics.people_unset([ "Days Overdue" ]);

analytics.people_increment({ "Coins Gathered": 12 });

analytics.people_append({ "Power Ups": "Bubble Lead" });

analytics.people_union({ "Items purchased": ["socks", "shirts"] });

analytics.people_delete_user();

analytics.reset();

References

https://mixpanel.com/help/reference/http

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文