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

@attentive-mobile/attentive-react-native-sdk

v2.1.0

Published

React Native Module for the Attentive SDK

Readme

attentive-react-native-sdk

Attentive React Native SDK

The Attentive React Native SDK provides the functionality to render Attentive creative units and collect Attentive events in React Native mobile applications.

Package Manager

This project uses npm as the preferred package manager for consistency and alignment with modern React Native best practices. While this library will work with any package manager (npm, yarn, or pnpm), the development scripts are configured to use npm.

Note on package managers: Modern npm (v7+) has significantly improved performance and features, making it the recommended choice for React Native projects. Both npm and yarn work well with React Native, but this project standardizes on npm for development workflows.

Requirements

| Tool | Version | |------|---------| | Node.js | >= 18.0.0 | | React Native | >= 0.74 | | Ruby | >= 3.3 | | CocoaPods | ~> 1.16 | | Xcode | >= 15 | | Android SDK | API 24+ | | JDK | 17 |

Installation

Run npm install @attentive-mobile/attentive-react-native-sdk from your app's root directory.

Usage

See the Example Project for a sample of how the Attentive React Native SDK is used.

*** NOTE: Please refrain from using any private or undocumented classes or methods as they may change between releases. ***

Import the SDK

import { initialize, identify, triggerCreative, recordPurchaseEvent, /* ... */ } from '@attentive-mobile/attentive-react-native-sdk';

Create the AttentiveConfig

// Create an AttentiveSdkConfiguration with your attentive domain, in production mode
const config: AttentiveSdkConfiguration = {
  attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
  mode: 'production',
}
// Alternatively, use "debug" mode. When in debug mode, the Creative will not be shown, but instead a popup will show with debug information about your creative and any reason the Creative wouldn't show.
const config: AttentiveSdkConfiguration = {
  attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
  mode: 'debug',
}

Debugging Features

The SDK includes debugging helpers to show what data is being sent and received. Enable debugging by setting enableDebugger: true:

const config: AttentiveSdkConfiguration = {
  attentiveDomain: 'YOUR_ATTENTIVE_DOMAIN',
  mode: 'debug',
  enableDebugger: true, // Shows debug overlays for events and creatives
}

When enabled, debug overlays will automatically appear when:

  • Creatives are triggered
  • Events are recorded (product views, purchases, etc.)

You can also manually invoke the debug helper:

invokeAttentiveDebugHelper();

See DEBUGGING.md for detailed information about debugging features.

Initialize the SDK

Platform difference: iOS and Android have different initialization requirements.

iOS — Initialize from TypeScript

On iOS, call initialize from TypeScript as early as possible (e.g. the root App component's useEffect):

// Called once per app session, before any other SDK operations.
initialize(config);

Android — Initialize from Native Code

On Android, AttentiveSdk.initialize() must be called from your Application.onCreate() in native Kotlin/Java code. There are two reasons for this:

  1. Lifecycle observers must be registered before the React Native bridge is ready. Internally, the SDK creates an AppLaunchTracker that calls lifecycle.addObserver() on the ProcessLifecycleOwner. If initialization happens after the bridge starts, early app-launch events can be missed.
  2. lifecycle.addObserver() requires the main thread. AndroidX enforces this with an IllegalStateException if called from a background thread. Application.onCreate() is guaranteed by the Android system to run on the main thread, so calling initialize there satisfies this requirement automatically — no extra threading machinery needed.

Do not call AttentiveSdk.initialize() from a background thread or a coroutine dispatcher other than Dispatchers.Main. Doing so will throw an IllegalStateException from inside the AndroidX Lifecycle library.

Add the following to your MainApplication.kt (or MainApplication.java):

import android.app.Application
import com.attentive.androidsdk.AttentiveConfig
import com.attentive.androidsdk.AttentiveSdk
import com.attentive.androidsdk.AttentiveLogLevel

class MainApplication : Application(), ReactApplication {

    override fun onCreate() {
        super.onCreate()
        // ... your existing setup ...
        initAttentiveSDK()
    }

    private fun initAttentiveSDK() {
        val config = AttentiveConfig.Builder()
            .applicationContext(this)
            .domain("YOUR_ATTENTIVE_DOMAIN")
            .mode(AttentiveConfig.Mode.PRODUCTION) // or Mode.DEBUG for testing
            .notificationIconId(R.drawable.ic_stat_notification)
            .skipFatigueOnCreatives(false)
            .logLevel(AttentiveLogLevel.VERBOSE)
            .build()

        // Application.onCreate() is always called on the main thread by the Android system,
        // so no thread-switching wrapper is needed here.
        AttentiveSdk.initialize(config)
    }
}
Android notification small icon

Android requires push notifications to use a small status-bar icon. If notificationIconId is not set, the Attentive Android SDK uses its default fallback icon. To use your app's branding, add a notification small icon resource to your host app and pass its resource ID during native initialization.

Add the icon to your Android app's drawable resources:

android/app/src/main/res/drawable/ic_stat_notification.png

Use a white-only transparent PNG designed for Android notification status bars. Do not use the full-color launcher icon from mipmap-*, because Android masks small notification icons and it can render poorly.

Then add the icon to your existing AttentiveConfig.Builder() chain in MainApplication.kt before build():

android/app/src/main/java/<your-package>/MainApplication.kt
.notificationIconId(R.drawable.ic_stat_notification)

MainApplication.kt is host-app code, not generated by this SDK at runtime. If R.drawable.ic_stat_notification does not resolve, confirm the drawable file name matches exactly and that you are referencing your app module's R class.

After the native initialization, all other SDK operations (identify, recordAddToCartEvent, recordPurchaseEvent, etc.) are called from TypeScript as normal on both platforms.

Tip: If you see [AttentiveSDK] recordAddToCartEvent failed — SDK may not be initialized in your Android logcat, it means AttentiveSdk.initialize() was not called from native code before the event was recorded. Check your Application.onCreate() setup.

Destroy the creative

// This will remove the creative along with its web view
destroyCreative();

Identify the current user

Use identify to add or enrich information about the current user. As you gather identifiers (client user ID, email, phone, etc.), pass them to Attentive via identify. Each identifier is optional, and you can call identify repeatedly as you learn more about the user — multiple calls combine the identifiers rather than replacing them. The more identifiers you provide, the better the SDK functions.

identify only enriches the current user; it does not switch users. When a different user logs in on the same device, use updateUser instead — it clears the previous user's identifiers first.

// If you have any user identifiers, register them before loading the creative or
// sending events. Each identifier is optional — skip this step if you have none yet.
const identifiers: UserIdentifiers = {
  phone: '+15556667777',
  email: '[email protected]',
  klaviyoId: 'userKlaviyoId',
  shopifyId: 'userShopifyId',
  clientUserId: 'userClientUserId',
  customIdentifiers: { customIdKey: 'customIdValue' }
};
identify(identifiers);

Here is the list of possible identifiers: | Identifier Name | Type | Description | | ------------------ | --------------------- | ----------------------------------------------------------------------------------------------------------------------- | | Client User ID | String | Your unique identifier for the user. This should be consistent across the user's lifetime. For example, a database id. | | Phone | String | The users's phone number in E.164 format | | Email | String | The users's email | | Shopify ID | String | The users's Shopify ID | | Klaviyo ID | String | The users's Klaviyo ID | | Custom Identifiers | Map<String,String> | Key-value pairs of custom identifier names and values. The values should be unique to this user. |

Because identifiers accumulate, you can register them as they become available — later calls add to the set rather than overwriting it:

identify({ email: '[email protected]' });
identify({ phone: '+15556667777' });
// The SDK now has both identifiers:
//   email: '[email protected]'
//   phone: '+15556667777'

Switch the current user (updateUser)

Use updateUser to switch to a different user on the same device — for example, when one user logs out and a different user logs in. At least one of email or phone must be provided.

Calling updateUser automatically clears the identifiers previously associated with the current user — including detaching any push token from them — and associates the app with the new identifier(s) you provide, so all subsequent events and messages are attributed to the new user. It returns a Promise that resolves on success and rejects with an error on failure.

try {
  // Switch to a different user on the same device
  await updateUser({ email: '[email protected]', phone: '+15559876543' });
} catch (error) {
  // Handle the failure (e.g. surface an error to the user)
}

Use updateUser only when switching to a different user. To add or enrich identifiers for the current user, prefer identify (shown above).

Load the Creative

// Trigger the Creative. This will show the Creative as a pop-up over the rest of the app.
triggerCreative();

Record user events

The SDK currently supports Purchase, AddToCart, ProductView, and CustomEvent.

// Construct one or more "Item"s, which represents the product(s) purchased
const items: Item[] = [
  {
    productId: '555',
    productVariantId: '777',
    price: '14.99',
    currency: 'USD',
  },
];

// Construct a Purchase event
const purchase: Purchase = {
  items: items,
  orderId: '88888',
  cartId: '555555',        // optional
  cartCoupon: 'SOME-DISCOUNT', // optional
}

// Record the PurchaseEvent
recordPurchaseEvent(purchase);

The process is similar for the other events. See eventTypes.tsx for all events.

Push Notifications (iOS and Android)

The SDK supports push notification integration on both iOS (APNs) and Android (FCM). The following sections cover iOS-specific setup flows. On Android, push notification integration is handled entirely in native Kotlin/Java code — see App Events on Android for details.

iOS — required setup: Your AppDelegate must forward notification responses to the SDK for push tracking to work. Add this single line to your userNotificationCenter(_:didReceive:withCompletionHandler:):

AttentiveSDKManager.shared.handleNotificationResponse(response)

Without this, push open and foreground push events will not be tracked on iOS. See iOS AppDelegate Integration for full details.

Migrating from an earlier version? If you previously called AttentiveSDKManager.shared.handleForegroundPush(response:authorizationStatus:) or AttentiveSDKManager.shared.handlePushOpen(response:authorizationStatus:) directly from your AppDelegate, replace that code with the single handleNotificationResponse call above. Using both will result in double-tracked events. The old methods are now deprecated.


App Events on Android

On Android, regular app open and foreground events are handled automatically by the native Android SDK once AttentiveSdk.initialize() is called from Application.onCreate() (see Android Native Initialization). The lifecycle observers registered during initialization (e.g. AppLaunchTracker) take care of this transparently — there is no need to manually call handleRegularOpen or subscribe to AppState changes.

The only TypeScript-side step required on Android is calling identify() with any available user identifiers as early as possible in your app’s lifecycle (e.g. in the root component useEffect).

Prerequisites

  1. AndroidManifest – Declare the notification permission for Android 13+:
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
    <!-- other permissions -->
</manifest>
  1. Native initialization – The SDK must be initialized from Application.onCreate() on Android (see Android Native Initialization above). App open and lifecycle events are then tracked automatically.

TypeScript setup (Android)

After native initialization, the only required TypeScript call is identify():

import { Platform } from 'react-native';
import { initialize, identify } from 'attentive-react-native-sdk';

// Inside your root component (e.g. App.tsx useEffect):
if (Platform.OS === 'ios') {
  initialize(config);
}

identify({ email: '[email protected]', clientUserId: 'id-123' });

Push notifications on Android (FCM)

The Attentive Android SDK registers its own FirebaseMessagingService automatically — you do not need to create a subclass. As long as your app is registered with Firebase and includes a valid google-services.json, the SDK handles FCM token registration and foreground push delivery for you. Follow the Firebase Android setup guide to add FCM to your project.

If you already have a FirebaseMessagingService subclass

If your app has an existing FirebaseMessagingService subclass for other purposes, route Attentive messages through to the SDK:

import com.attentive.androidsdk.AttentiveSdk
import com.google.firebase.messaging.FirebaseMessagingService
import com.google.firebase.messaging.RemoteMessage

class YourFirebaseMessagingService : FirebaseMessagingService() {

    override fun onMessageReceived(remoteMessage: RemoteMessage) {
        super.onMessageReceived(remoteMessage)
        if (AttentiveSdk.isAttentiveFirebaseMessage(remoteMessage)) {
            AttentiveSdk.sendNotification(remoteMessage)
        }
        // Handle your own messages below...
    }
}
Notification opens (singleTask apps)

React Native apps use singleTask launch mode by default. When a push notification is tapped while the app is in the background, Android delivers the intent via onNewIntent() rather than recreating the activity. Override onNewIntent in your MainActivity so the SDK can detect the notification tap:

import android.content.Intent

class MainActivity : ReactActivity() {

    override fun onNewIntent(intent: Intent?) {
        super.onNewIntent(intent)
        intent?.let { setIntent(it) }
    }
}

Refer to the Attentive Android SDK documentation for the full list of native APIs available for push notification integration.


Request Push Permission (iOS)

import { registerForPushNotifications } from 'attentive-react-native-sdk';

// Request permission to send push notifications
// This will show the iOS system permission dialog
registerForPushNotifications();

Register Device Token (iOS)

When your iOS app receives an APNs device token, register it with the Attentive backend:

import { registerDeviceToken } from 'attentive-react-native-sdk';

// In your AppDelegate or push notification handler:
// Convert the device token Data to a hex string and pass the authorization status
registerDeviceToken(hexEncodedToken, 'authorized');

The authorizationStatus parameter should be one of:

  • 'authorized' - User has granted permission
  • 'denied' - User has denied permission
  • 'notDetermined' - User hasn't been asked yet
  • 'provisional' - Provisional authorization (quiet notifications)
  • 'ephemeral' - App Clip notifications

Handle Push Notification Opens (iOS)

When a user taps on a push notification, track the event:

import { handlePushOpened } from 'attentive-react-native-sdk';
import type { ApplicationState, PushAuthorizationStatus } from 'attentive-react-native-sdk';

// In your notification handler:
handlePushOpened(
  notificationPayload,    // The notification's userInfo/data
  'background',           // App state: 'active', 'inactive', or 'background'
  'authorized'            // Current authorization status
);

Handle Foreground Notifications (iOS)

When a notification arrives while the app is in the foreground:

import { handleForegroundNotification } from 'attentive-react-native-sdk';

// In your foreground notification handler:
handleForegroundNotification(notificationPayload);

iOS AppDelegate Integration

For proper push notification integration, your iOS AppDelegate needs to:

  1. Request notification permissions via the SDK
  2. Implement application:didRegisterForRemoteNotificationsWithDeviceToken: to register the token
  3. Forward notification responses to the SDK for push-open tracking
Push Open Tracking (Required)

Add one line to your AppDelegate's didReceive handler so the SDK can track push opens and foreground push events. Without this, handlePushOpen() and handleForegroundPush() called from JavaScript will not be able to track events on iOS (the native SDK requires a UNNotificationResponse which cannot cross the React Native bridge).

// In AppDelegate.swift — UNUserNotificationCenterDelegate
func userNotificationCenter(
    _ center: UNUserNotificationCenter,
    didReceive response: UNNotificationResponse,
    withCompletionHandler completionHandler: @escaping () -> Void
) {
    // Attentive push tracking (handles app-state + auth status automatically)
    AttentiveSDKManager.shared.handleNotificationResponse(response)

    // Forward to your push library (e.g. RNCPushNotificationIOS) for JS events
    RNCPushNotificationIOS.didReceive(response)
    completionHandler()
}

handleNotificationResponse automatically:

  • Detects whether the app is in the foreground or background
  • Fetches the current authorization status
  • Calls the correct native SDK method (handlePushOpen or handleForegroundPush)
  • Caches the response so the JS-side handlePushOpen() / handleForegroundPush() calls are fulfilled without double-tracking
  • Cold-launch safe: If the user taps a push while the app is killed, the response is cached and automatically tracked once the SDK initializes
Callback-Based Registration (Recommended)

For more control over the registration flow, you can use the callback-based registration directly in your AppDelegate:

// In AppDelegate.swift
import UserNotifications
import attentive_react_native_sdk

func application(
    _ application: UIApplication,
    didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data
) {
    UNUserNotificationCenter.current().getNotificationSettings { settings in
        let authStatus = settings.authorizationStatus

        // Get SDK instance with proper type
        guard let attentiveSdk = AttentiveSDKManager.shared.sdk as? ATTNNativeSDK else {
            print("[Attentive] SDK not initialized")
            return
        }

        // Register device token with callback
        attentiveSdk.registerDeviceToken(
            deviceToken,
            authorizationStatus: authStatus,
            callback: { data, url, response, error in
                DispatchQueue.main.async {
                    // Handle registration result
                    if let error = error {
                        print("[Attentive] Registration failed: \(error.localizedDescription)")
                    }

                    // Trigger regular open event after registration
                    attentiveSdk.handleRegularOpen(authorizationStatus: authStatus)
                }
            }
        )
    }
}

Documentation:

For Android push notification integration, see the App Events on Android section above.