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 🙏

© 2026 – Pkg Stats / Ryan Hefner

zetakit_reactnative

v0.1.0

Published

Zeta Global React Native SDK

Readme

zeta-reactnative-sdk

The Zeta React Native plugin enables developers to integrate Zeta's services seamlessly into your React Native applications.
It provides a simple, reliable, and efficient way to access Zeta APIs and build robust cross-platform apps for iOS and Android.

##What's Inside/ Key Offerings

  • Easy integration with Zeta APIs
  • Cross-platform support (iOS & Android)
  • React Native package over iOS SDK 0.1.7 & Android SDK 0.1.7
  • Install and initialise the Zeta SDK
  • User identification
  • Event tracking
  • Location tracking
  • Push notification Handling
  • In-App messaging
  • Opt-in/out for tracking

SDK Support and Compatibility

React Native version: 0.76 and above.

iOS

  • Minimum deployment target: iOS 15.1+

Android

  • Minimum supported version: Android 7.0 (API level 24)
  • Set minSdkVersion to 24 or higher in your android/app/build.gradle file
  • Make sure your Android project has Google Play Services and Firebase Messaging set up if you are using push notifications with React Native SDK

Installation

Install the plugin using yarn or npm:

yarn add 'zetakit_reactnative'

Installation

npm install zetakit_reactnative

or 

yarn add zetakit_reactnative

How to install the Zeta Core React Native module.

Requirements

React Native >= 0.76.0 Create React Native Library >= 0.48.3

iOS

minimum deployment target iOS 15.1+

Android

minimum deployment target Android 7 (24+)

Standard React Native Setup

Install the plugin using yarn or npm:

yarn add 'zetakit_reactnative'

Installation

npm install zetakit_reactnative

or 

yarn add zetakit_reactnative

Usage

import ZetaCore from 'zetakit_reactnative';

// ...

const config = { "isLoggingEnabled": true, "clientSiteId": "your_client_site_id", "clientSecret": "your_client_secret", "region": "US", "appGroupId": "app_group_id", "optIn": true, "appEnvironment": "PRODUCTION" }
    ZetaCore.initialize(config, () => { })

Setting User Details with Additional Properties

    const userObject = {
  "firstName": "John",
  "lastName": "Doe",
  "uid": "123",
  "email": {
    "email": "[email protected]"
  },
  "additionalProperties": {
    "custom_field1": "custom value"
  }
}

ZetaCore.build(userObject)

Push Notification Management

Device token update

```js
ZetaCore.updateDeviceToken("my Device Token")
```
Note: 
    ios: Native iOS SDK methods are required to set up push notifications in the React Native app’s
    More info: https://docs.zetaglobal.com/docs/ios-mobile-sdk-017-documentation#push-notification
    
    android: If the application is not using a custom service, the SDK will automatically capture the device token. If the application wants to override the default behavior of the push notification channel, native SDK setup is required at the Android app level. In that case, the push notification channel should be configured in the Application.onCreate method
    More info: https://docs.zetaglobal.com/docs/ios-mobile-sdk-017-documentation#push-notification