npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@rudderstack/rudder-sdk-react-native

v1.15.0

Published

Rudder React Native SDK

Downloads

34,074

Readme

What is RudderStack?

RudderStack is a customer data pipeline tool for collecting, routing and processing data from your websites, apps, cloud tools, and data warehouse.

More information on RudderStack can be found here.

RudderStack React Native SDK

The RudderStack React Native SDK allows you to track event data from your app. It can be easily integrated into your React Native application. After integrating this SDK, you will also send the event data to your preferred analytics destination/s, such as Google Analytics, Amplitude, and more.

Getting Started with React Native SDK

  1. Add the SDK to your React Native application with the following command:
yarn add @rudderstack/rudder-sdk-react-native
  1. For Android: Make sure you have added mavenCentral() as a repository in your project level build.gradle file, as shown below:
buildscript {
    repositories {
        mavenCentral()
    }
}
allprojects {
    repositories {
        mavenCentral()
    }
}
  1. For iOS: Navigate to the ios folder of your application and install all the dependencies with:
pod install

Import RudderClient

Add the below line to import the rudderClient.

import rudderClient, { RUDDER_LOG_LEVEL } from '@rudderstack/rudder-sdk-react-native';

Initialize RudderClient

Add the following code in your application:

const config = {
  dataPlaneUrl: <DATA_PLANE_URL>,
  trackAppLifecycleEvents: true,
  logLevel: RUDDER_LOG_LEVEL.DEBUG
};
await rudderClient.setup(<WRITE_KEY>, config);

Send Events

rudderClient.track("simple_track_event", {
  "key1":"val1",
  "key2":{
    "child_key1":"child_val1"
  }
});

Device Tokens

You can use the putDeviceToken method to pass your Android and iOS device tokens.

putDeviceToken accepts two string arguments :

  • androidToken : Your Android device token
  • iOSToken : Your iOS device token

An example usage is as shown below:

rudderClient.putDeviceToken("<Your Android device token>", "<Your iOS device token>");

AdvertisingId

You can use the setAdvertisingId method to pass your Android and iOS AAID and IDFA respectively. setAdvertisingId accepts two string arguments :

  • androidId : Your Android advertisingId (AAID)
  • iOSId : Your iOS advertisingId (IDFA)

Example Usage:

rudderClient.setAdvertisingId(AAID, IDFA);

AnonymousId

You can use the setAnonymousId method to pass your anonymousId and the SDK will use that instead of the deviceId. setAnonymousId accepts one string argument:

  • id : Your anonymousId

Example Usage:

rudderClient.setAnonymousId(ANONYMOUS_ID);

For more details, check out our documentation.

Contact Us

If you come across any issues while configuring or using RudderStack React Native SDK, please feel free to start a conversation on our Slack channel. We will be happy to help you.