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

@digia-engage/core

v2.3.0

Published

React Native bridge for Digia Engage – renders native Android Compose UI inside React Native apps

Downloads

1,350

Readme

@digia-engage/core

React Native bridge for the Digia Engage SDK — renders in-app experiences (tooltips, spotlights, carousels, surveys) inside React Native applications.

Platform support | Platform | Status | |---|---| | Android | ✅ Full support | | iOS | ✅ Guide overlays (JS renderer); native bridge (surveys, inline) |


How it works

Guide campaigns (tooltip / spotlight) are rendered entirely in JavaScript by DigiaProvider.tsx using @floating-ui/core for anchor positioning. Surveys and inline carousels are forwarded to the native Android/iOS SDK via the bridge for Compose/SwiftUI rendering.

CEP plugin (e.g. CleverTap)
  │
  ▼
Digia.onCampaignTriggered(payload)
  │
  ├─ campaign_type === 'guide'   → DigiaGuideController → DigiaProvider.tsx (JS)
  │                                                        TooltipOverlay / SpotlightOverlay
  │
  ├─ campaign_type === 'inline'  → nativeDigiaModule.triggerCampaign()
  │                                Android: DigiaSlot composable → VWCarousel
  │
  └─ campaign_type === 'survey'  → nativeDigiaModule.triggerCampaign()
                                   Android: SurveyRenderer composable

Installation

npm install @digia-engage/core
# or
yarn add @digia-engage/core

React Native CLI auto-linking handles the rest. Rebuild the native app:

npx react-native run-android
# or
cd android && ./gradlew assembleDebug

Android – host app dependency

Add the Digia Engage Android SDK to android/app/build.gradle.kts:

dependencies {
    implementation("tech.digia:engage:2.0.0")
}

Usage

1 — Initialize the SDK

Call Digia.initialize() once, as early as possible (top of App.tsx):

import { Digia } from '@digia-engage/core';

await Digia.initialize({
  projectId: 'digia_YOUR_PROJECT_ID',
  environment: 'production', // or 'sandbox'
  logLevel: 'error',
});

2 — Mount <DigiaHost />

Place <DigiaHost /> at the root of your component tree. It renders the JS-side guide/tooltip/spotlight overlays via a Modal.

// app/_layout.tsx (Expo Router) or App.tsx
import { DigiaHost } from '@digia-engage/core';

export default function RootLayout() {
  return (
    <>
      <Stack />
      <DigiaHost />
    </>
  );
}

3 — Track screen changes

import { Digia } from '@digia-engage/core';

<NavigationContainer
  onStateChange={() => {
    const route = navRef.getCurrentRoute();
    if (route) Digia.setCurrentScreen(route.name);
  }}
>

4 — Register anchors for guide campaigns

Wrap any UI element you want a tooltip or spotlight to point at:

import { DigiaAnchorView } from '@digia-engage/core';

<DigiaAnchorView anchorKey="home_banner_btn">
  <Button title="Banner" />
</DigiaAnchorView>

5 — Add slots for inline campaigns

import { DigiaSlotView } from '@digia-engage/core';

// Auto-sizes to native content height
<DigiaSlotView placementKey="home_banner" />

6 — Register a CEP plugin

import { DigiaCleverTapPlugin, createCleverTapClient } from '@digia-engage/clevertap';
import CleverTap from 'clevertap-react-native';

Digia.register(new DigiaCleverTapPlugin({
  cleverTap: createCleverTapClient(CleverTap),
}));

7 — (Optional) Handle actions

Override or observe every action the SDK fires:

await Digia.initialize({
  projectId: '...',
  onAction: (action, context) => {
    if (action.type === 'deep_link') {
      // return true to suppress SDK default; false/void to let SDK handle it
    }
  },
  linking: {
    routeViaSystemLinking: true,
    inAppBrowser: defaultInAppBrowser, // requires react-native-inappbrowser-reborn
  },
});

API Reference

Digia

| Method | Signature | Description | |---|---|---| | initialize | (config: DigiaConfig) => Promise<void> | Initialize the SDK. Call once before anything else. | | register | (plugin: DigiaPlugin) => void | Register a CEP plugin (CleverTap, MoEngage, etc.). | | unregister | (plugin: DigiaPlugin \| string) => void | Remove a previously registered plugin. | | setCurrentScreen | (name: string) => void | Notify the SDK of the active screen. | | registerAnchor | (key: string, screen?: string) => void | Manually register an anchor key. | | unregisterAnchor | (key: string) => void | Remove an anchor registration. |

DigiaConfig

| Prop | Type | Default | Description | |---|---|---|---| | projectId | string | — | Required. Your Digia project ID (format: digia_…). Sent as x-digia-project-id on all SDK requests. | | environment | 'production' \| 'sandbox' | 'production' | Target environment. | | logLevel | 'none' \| 'error' \| 'verbose' | 'error' | Log verbosity. | | onAction | OnAction | — | Override hook for all actions. Return true to suppress SDK default. | | linking.routeViaSystemLinking | boolean | true | Use Linking.openURL for URL actions. | | linking.inAppBrowser | InAppBrowserAdapter | — | Required for open_url with presentation: 'in_app'. | | baseUrl | string | — | Override the Digia API base URL. |

<DigiaHost />

No props. Renders the JS guide overlay runtime (TooltipOverlay, SpotlightOverlay). Place it once, anywhere in the root view — Modal handles z-ordering.

<DigiaAnchorView>

| Prop | Type | Description | |---|---|---| | anchorKey | string | Required. Must match the step's anchorKey in the campaign config. | | ...ViewProps | — | All standard React Native View props are forwarded. |

<DigiaSlotView>

Renders inline campaign content (banners, cards) at a named placement. Collapses to zero height when no campaign is active for the slot.

| Prop | Type | Description | |---|---|---| | placementKey | string | Required. Must match the campaign's slotKey. | | style | ViewStyle? | Pass an explicit height to fix size; otherwise auto-sizes. |

<DigiaHostView>

Low-level transparent native overlay view (Android/iOS). Use <DigiaHost /> instead unless you need the native Compose/SwiftUI overlay host explicitly.


Campaign types

| Type | Trigger | JS or Native | |---|---|---| | guide (tooltip) | DigiaGuideControllerDigiaHost | JSTooltipOverlay via Modal | | guide (spotlight) | DigiaGuideControllerDigiaHost | JSSpotlightOverlay via Modal | | inline | nativeDigiaModule.triggerCampaign() | Native — Android Compose VWCarousel | | survey | nativeDigiaModule.triggerCampaign() | Native — Android Compose SurveyRenderer | | nudge | nativeDigiaModule.triggerCampaign() | Native — Android Compose dialog / bottom-sheet |


Architecture

react-native/src/
  index.ts                  Public API exports
  Digia.ts                  SDK singleton — initialize, register, setCurrentScreen,
                            campaign routing, campaign store (fetched from backend)
  DigiaProvider.tsx         JS guide renderer — TooltipOverlay + SpotlightOverlay + DigiaHost
  DigiaGuideController.ts   Event bus for guide start/cancel; queues if DigiaHost not mounted
  digiaAnchorRegistry.ts    In-memory anchor position store with subscriber pattern
  DigiaAnchorView.tsx       Wraps UI elements; measures position via ref.measure
  DigiaSlotView.tsx         Native slot view wrapper; auto-sizes to content height
  DigiaHostView.tsx         Low-level native overlay host (transparent, pointer-events none)
  NativeDigiaEngage.ts      Codegen native module spec (TurboModule)
  actionHandler.ts          Action execution — deep link, open URL, next/prev/dismiss,
                            fire_event; onAction override; cold-start queue
  defaultInAppBrowser.ts    Lazily loads react-native-inappbrowser-reborn
  templateTypes.ts          TypeScript types for TooltipConfig, SpotlightConfig,
                            CarouselConfig, SurveyTemplateConfig
  types.ts                  DigiaConfig, DigiaPlugin, DigiaDelegate, InAppPayload,
                            DigiaAction, ActionContext, DigiaExperienceEvent

react-native/android/       Android bridge
  DigiaModule.kt            initialize, registerBridge, triggerCampaign, registerAnchor, …
  DigiaSlotViewManager.kt   DigiaSlotView native view manager
  DigiaAnchorViewManager.kt DigiaAnchorView native view manager
  DigiaViewManager.kt       DigiaHostView native view manager

react-native/ios/           iOS bridge
  DigiaModule.swift         initialize, registerBridge, triggerCampaign, …
  DigiaHostViewManager.swift
  DigiaAnchorViewManager.swift

License

MIT © Digia Technology Private Limited