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

@tranzmit/react-native

v0.2.4

Published

React Native SDK for Tranzmit server-driven WebView paywalls: remote config, hosted paywall rendering, server-side experiments, and impression/CTA/conversion analytics.

Readme

@tranzmit/react-native

React Native SDK for Tranzmit server-driven WebView paywalls. Fetch remote placement config, render hosted paywall documents, run server-side experiments, and send impression / CTA / conversion analytics — without shipping a new app build for every paywall change.

Tranzmit owns paywall presentation, experimentation, and analytics. Your app owns billing and entitlements. Tranzmit does not process purchases.

Install

npm install @tranzmit/react-native
npm install @react-native-async-storage/async-storage react-native-webview react-native-safe-area-context

Expo (non–Expo Go): rebuild the dev client after adding the native modules (npx expo prebuild or an EAS dev build).

Quick start

import { useEffect } from "react";
import { TranzmitProvider, useTranzmit } from "@tranzmit/react-native";

export default function App() {
  return (
    <TranzmitProvider publicKey="pk_live_YOUR_KEY" userId={currentUser?.id}>
      <RootNavigator />
    </TranzmitProvider>
  );
}

function UpgradeButton() {
  const { isReady, gate, preloadPlacement, reportConversion } = useTranzmit();

  useEffect(() => {
    if (!isReady) return;
    void preloadPlacement("upgrade_pro");
  }, [isReady, preloadPlacement]);

  return (
    <Button
      title="Upgrade"
      onPress={() => {
        const result = gate("upgrade_pro", {
          onCTA: async (product) => {
            const ok = await purchaseProduct(product.id); // your billing
            if (!ok) return;
            reportConversion({
              trigger: "upgrade_pro",
              variantId: result.variantId,
              productId: product.id,
              revenue: 999,
              currency: "INR",
            });
          },
          onFallback: () => openExistingInAppPaywall(),
        });
      }}
    />
  );
}

Documentation

Full integration guide, billing rules, category routing, localization, security model, and API reference:

https://github.com/agaaz007/tranzmit-react-native-sdk#readme

License

UNLICENSED — proprietary. See LICENSE.