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

rn-new-arch-checker

v0.1.0

Published

CLI tool to audit React Native dependencies for New Architecture (Fabric + TurboModules) compatibility. Scan your package.json and instantly see which packages block migration.

Readme

rn-new-arch-checker

npm version npm downloads License: MIT Node.js

CLI and programmatic tool that audits your React Native project's dependencies for New Architecture (Fabric + TurboModules) compatibility. Queries react-native.directory in real time — no stale hardcoded lists.

Background

React Native 0.76 (October 2024) enabled the New Architecture by default. The legacy bridge is still supported but is no longer receiving new features as of mid-2025. If you're migrating — or planning to — the first question is always: which of my dependencies is going to block me?

This tool answers that by checking every react-native / expo package in your package.json against the community directory, which tracks newArchitecture support for ~2,500 packages.

Usage

No install required:

npx rn-new-arch-checker

Or install globally for repeated use:

npm install -g rn-new-arch-checker
rn-new-arch-checker --path ./apps/mobile/package.json

Example Output

╔══════════════════════════════════════════╗
║      rn-new-arch-checker v0.1.0        ║
║   React Native New Architecture Audit   ║
╚══════════════════════════════════════════╝

  ✅  [email protected]          supported
  ✅  [email protected]             supported
  ✅  [email protected]     supported
  ❌  [email protected]               unsupported
  ⚠️   [email protected]              unknown
  ⚠️   [email protected]       unknown

────────────────────────────────────────────────────────────
  Total checked:    6
  ✅ Supported:      3 (50%)
  ❌ Unsupported:    1 (17%)
  ⚠️  Unknown:        2 (33%)
────────────────────────────────────────────────────────────

  Blocking packages — migrate or replace these first:
    • [email protected]  →  https://www.npmjs.com/package/react-native-mmkv

Exit code is 1 if any unsupported packages are found. This makes it easy to gate CI on the result.

Options

| Flag | Description | |------|-------------| | --path <path> | Path to package.json. Defaults to auto-detect by walking up from cwd. | | --include-dev | Also check devDependencies. | | --json | Output as JSON — no spinner, no color, machine-readable. | | --verbose | Additional details per package (GitHub URL, npm URL). | | --version | Print version. | | --help | Show this help. |

What counts as a react-native package

The scanner filters dependencies by package name prefix. Included: react-native-*, @react-native/*, @react-native-community/*, expo-*, @expo/*, @unimodules/*. Pure JS packages (axios, lodash, etc.) are skipped — they work regardless.

Reading the results

| Status | Meaning | |--------|---------| | supported | Package explicitly marks newArchitecture: true in react-native.directory | | unsupported | Package explicitly marks newArchitecture: false | | unknown | Package not found in the directory, or the flag isn't set |

unknown doesn't mean broken. Many packages work fine on New Architecture without being listed in the directory. Cross-reference with the package's own README or GitHub issues.

CI Integration

# .github/workflows/new-arch-audit.yml
name: New Architecture Audit
on: [pull_request]

jobs:
  audit:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-node@v4
        with:
          node-version: '20'
      - name: Check New Architecture compatibility
        run: npx rn-new-arch-checker

To save the report as an artifact:

npx rn-new-arch-checker --json > new-arch-report.json

Programmatic API

import { runChecker } from 'rn-new-arch-checker';

const report = await runChecker({
  packageJsonPath: './apps/mobile/package.json',
  includeDevDeps: false,
});

console.log(`${report.supported}/${report.total} packages support New Architecture`);

const blocking = report.packages.filter(p => p.newArchSupport === 'unsupported');
blocking.forEach(p => {
  console.log(`${p.name}@${p.version} — ${p.npmUrl}`);
});

The SummaryReport object:

interface SummaryReport {
  total: number;
  supported: number;
  unsupported: number;
  unknown: number;
  packages: Array<{
    name: string;
    version: string;
    newArchSupport: 'supported' | 'unsupported' | 'unknown';
    githubUrl?: string;
    npmUrl: string;
  }>;
  checkedAt: string; // ISO timestamp
}

How the data works

react-native.directory is a community-maintained registry of ~2,500 React Native packages. Each entry has a newArchitecture boolean set by maintainers or contributors. This tool fetches the full dataset at runtime (paginated, ~2,500 entries) so you always get current data, not a snapshot baked into the npm package.

The directory is the same source used by the official react-native.directory website.

Alternatives considered

  • Grepping package.json for version numbers — doesn't tell you about compatibility
  • Checking individual GitHub repos — too slow, no standard format
  • Hardcoded compatibility lists — go stale immediately

License

MIT © Salil Gupta