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

@warplink/react-native

v0.1.1

Published

WarpLink deep linking SDK for React Native

Downloads

330

Readme

@warplink/react-native

License: MIT npm version CI

Deep linking SDK for React Native — handle Universal Links and App Links, resolve deferred deep links, and attribute installs with WarpLink.

Requirements

| Requirement | Minimum Version | |-------------|----------------| | React Native | >= 0.71.0 | | React | >= 18.0.0 | | iOS | 15+ | | Android | API 26+ (Android 8.0) | | Node.js | 18+ |

Installation

Bare React Native

npm install @warplink/react-native

Then install iOS pods:

cd ios && pod install

Android auto-links via React Native CLI — no additional setup required.

Expo Managed Workflow

npx expo install @warplink/react-native

Then generate native projects:

npx expo prebuild

Note: This SDK requires native modules and does not work with Expo Go. You must use a development build (npx expo prebuild or EAS Build).

Quick Start

import { useEffect } from 'react';
import { WarpLink } from '@warplink/react-native';

// Initialize on app startup (outside component — runs once)
WarpLink.configure({ apiKey: 'wl_live_abcdefghijklmnopqrstuvwxyz012345' });

function App() {
  useEffect(() => {
    // Handle warm-start deep links
    const unsubscribe = WarpLink.onDeepLink((event) => {
      if (event.deepLink) {
        console.log('Deep link destination:', event.deepLink.destination);
        // Navigate to event.deepLink.destination
      } else if (event.error) {
        console.error('Deep link error:', event.error.message);
      }
    });

    // Handle cold-start deep link
    WarpLink.getInitialDeepLink().then((link) => {
      if (link) {
        console.log('Cold start deep link:', link.destination);
        // Navigate to link.destination
      }
    });

    // Check for deferred deep link (first launch after install)
    WarpLink.checkDeferredDeepLink().then((link) => {
      if (link?.isDeferred) {
        console.log('Deferred deep link:', link.destination);
        // Navigate to link.deepLinkUrl ?? link.destination
      }
    });

    return unsubscribe;
  }, []);

  return <>{/* Your app */}</>;
}

Features

  • Universal Link & App Link Handling — resolve incoming deep links to destinations and custom parameters. See the Integration Guide.
  • Deferred Deep Links — route users to specific content even after App Store or Play Store install. See Deferred Deep Links.
  • Install Attribution — deterministic and probabilistic matching with confidence scores. See Attribution.
  • Cross-Platform — single TypeScript API for both iOS and Android with platform-specific native bridges.
  • No ATT Required — uses IDFV on iOS (exempt from App Tracking Transparency). No IDFA, no user prompts.
  • Debug Logging — enable with { debugLogging: true } in configure options to trace SDK behavior.
  • Zero Dependencies — no third-party runtime dependencies. Only peer dependencies on react and react-native.

Documentation

| Guide | Description | |-------|-------------| | Integration Guide | Step-by-step setup from zero to working deep links | | API Reference | Complete reference for all public types and methods | | Deferred Deep Links | How deferred deep linking works and how to use it | | Attribution | Install attribution tiers and confidence scores | | Error Handling | Every error case with recommended recovery actions | | Troubleshooting | Common issues and solutions | | Firebase Migration | Migrate from Firebase Dynamic Links to WarpLink | | Architecture | How the SDK bridges to native iOS and Android SDKs |

Links

License

MIT License. See LICENSE for details.