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

@wilderbots/wildlinks-react-native

v1.0.3

Published

React Native SDK for the WildLinks smart link platform - Universal Link/App Link handling and deferred deep link matching

Readme

WildLinks React Native SDK

Handles two paths a smart link tap can take once your app exists:

  1. App already installed — the OS hands your app the URL directly (Universal Links on iOS, App Links on Android). This SDK resolves what that URL means.
  2. App not installed yet — user gets sent to the store, installs, and opens the app for the first time. This SDK checks whether that install came from a smart link tap (clipboard-based deferred matching) and gets back the original intent.

It also supports app-specific prefixed URLs such as https://link.valueshift.in/x4I9/launch-offer when multiple apps share one branded domain.

Install

npm install @wilderbots/wildlinks-react-native
npm install @react-native-clipboard/clipboard   # optional, only needed for deferred matching

Native setup (required — this SDK doesn't replace it)

Universal Links / App Links are OS-level features; you still need to configure them natively so the OS knows to hand your app URLs from your domain, so Anthropic isn't duplicating what React Navigation's own linking docs cover:

  • iOS: add your domain under Associated Domains capability as applinks:go.yourbrand.com, matching the appId you configured for that domain in the dashboard's Domains page (which serves apple-app-site-association).
  • Android: add an <intent-filter> with android:autoVerify="true" for go.yourbrand.com in your AndroidManifest.xml, matching the packageName + sha256CertFingerprints you configured in the dashboard (which serves assetlinks.json).

Usage

import { initWildlinks, useWildlinks } from '@wilderbots/wildlinks-react-native';

// Once, at app startup (e.g. top of App.tsx, outside the component)
initWildlinks({
  baseUrl: 'https://apilink.wilderbots.com',
  domains: ['go.wilderbots.com'],
  apiKey: 'dlk_xxx',
});

function App() {
  const { resolved, loading } = useWildlinks();

  useEffect(() => {
    if (resolved?.matched && resolved.deepLinkPayload) {
      // e.g. { screen: 'offer', offerId: 'diwali24' }
      navigation.navigate(resolved.deepLinkPayload.screen, resolved.deepLinkPayload);
    }
  }, [resolved]);

  // ... your navigator
}

Create links from your app

import { createWildlink } from '@wilderbots/wildlinks-react-native';

const link = await createWildlink({
  defaultUrl: 'https://example.com/promo',
  title: 'Launch Offer',
  appProfileId: 'app_profile_123',
  deepLinkPayload: { screen: 'offer', offerId: 'spring24' },
});

console.log(link.shortUrl);
// https://go.wilderbots.com/x4I9/launch-offer

Use createLink for the full created link object, createShortLink to return only shortUrl, or createWildlink as a convenience wrapper. Pass appProfileId when the link should be generated for a specific app profile from the WildLinks dashboard.

If you only want a plain short URL that redirects to a long URL, use:

import { createShortLink } from '@wilderbots/wildlinks-react-native';

const shortUrl = await createShortLink({
  defaultUrl: 'https://example.com/promo',
});

console.log(shortUrl);
// https://go.wilderbots.com/launch-offer

That helper prefers the shortest non-prefixed URL. Use createWildlink, createDeepLink, or createLink when you want app-specific deep-link behavior.

Or call the lower-level functions directly if you're not using the hook:

import { handleWildlinksUrl, checkWildlinksInstall } from '@wilderbots/wildlinks-react-native';

const result = await handleWildlinksUrl('https://go.wilderbots.com/diwali-sale');
// { matched: true, destinationUrl: '...', deepLinkPayload: {...} }

That lower-level helper also works with prefixed URLs:

const result = await handleWildlinksUrl('https://go.wilderbots.com/x4I9/diwali-sale');

Improving deferred-match accuracy on Android

Clipboard matching works but is a fallback. For production Android traffic, wire up the Play Install Referrer API in a small native module: have the web interstitial append &dl_match_token=<token> as an install referrer parameter on the Play Store link instead of relying on clipboard, then on first launch read the referrer string and call matchDeferredToken(baseUrl, token) directly. iOS has no equivalent public API — clipboard is the standard technique there (Branch/AppsFlyer use the same approach under the hood for iOS deferred matching).

Building from source

npm install
npm run build