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

rnassist

v1.0.6

Published

AI-powered debugger and performance analyzer for React Native projects

Readme

rnassist

AI-powered debugger and performance analyzer for React Native projects.

Run it inside any React Native project to get real-time analysis of your code, dependencies, runtime errors, network calls, and known bugs — all in one terminal report.


rnassist scan output

How It Works

rnassist scan
      ↓
Reads all .ts .tsx .js .jsx files
      ↓
Checks dependencies against known RN bug database
      ↓
Connects to your running app via Metro WebSocket
Collects: runtime errors, console logs, network calls
      ↓
Sends everything to Gemini AI
      ↓
Prints a specific, actionable report in your terminal

Requirements

  • Node.js 18+
  • A React Native or Expo project
  • Metro bundler running (npx expo start or npx react-native start)

Installation

npm install -g rnassist

Setup

You need a free Gemini API key to use rnassist:

  1. Get your API key: https://aistudio.google.com/app/apikey
  2. Set it as an environment variable:
export GEMINI_API_KEY="your-api-key-here"

To make it permanent, add it to your shell profile:

# For Zsh (macOS default)
echo 'export GEMINI_API_KEY="your-key"' >> ~/.zshrc
source ~/.zshrc

# For Bash
echo 'export GEMINI_API_KEY="your-key"' >> ~/.bashrc
source ~/.bashrc

Usage

Navigate to your React Native project root, then run:

Scan

rnassist scan

Watches your running app. Trigger some actions in the simulator or device, then press Ctrl+C to analyze. You will get a full report covering:

  • Runtime crashes and errors
  • Performance bottlenecks (JS thread, re-renders, memory leaks)
  • Bad patterns and anti-patterns
  • Known bugs matched to your exact dependency versions
  • Network calls made during the session

Update Bug Database

rnassist update-bugs

Fetches the latest React Native changelog from GitHub and updates the local bug database. Run this periodically to stay up to date with known fixes.


Example Output

===========================================================================================
[!] CRITICAL CRASH
===========================================================================================
FILE: /app/(tabs)/biometric.tsx
LINE: 22

  21 |  const data = undefined;
  22 |  console.log(data.name);  <--- CRASH HERE

FIX: Use optional chaining: console.log(data?.name)

===========================================================================================
[!] PERFORMANCE — JS THREAD BOTTLENECK
===========================================================================================
FILE: /Hooks/useProduct.tsx

  fetchProduct is recreated on every render.
  Wrap in useCallback to stabilize the reference.

What It Analyzes

  • All .ts, .tsx, .js, .jsx files in your project (skips node_modules, android, ios, build)
  • package.json dependencies matched against a database of known RN bugs
  • Live runtime data from your running app via Chrome DevTools Protocol
  • React Native core bug fixes from the official changelog

License

ISC