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

sim-bridge

v0.2.8

Published

Zero-config native orchestrator for React Native Playground

Readme

🚀 Sim-Bridge

sim-bridge is a zero-configuration native orchestrator for the React Native Playground.

Features

  • Zero Setup: No manual configuration required
  • Auto-Bootstrap: Validates environment, installs Expo CLI, creates workspace, boots simulator
  • Idempotent: Safe to restart; reuses existing simulator and Metro process
  • Token Security: New token generated on each start
  • Screen Mirroring: Real-time simulator screenshots

Prerequisites

  • macOS (required for iOS Simulator)
  • Xcode with Command Line Tools

Note: Expo CLI is installed automatically if missing.

Quick Start

cd packages/runner
npm install
npm run dev

The runner will:

  1. ✅ Validate your environment (macOS, Xcode)
  2. ✅ Install Expo CLI globally (if needed)
  3. ✅ Create workspace at ~/.rn-playground/native
  4. ✅ Boot an iOS Simulator (if none running)
  5. ✅ Generate a security token
  6. ✅ Start the server

Copy the token displayed in terminal and paste it into the web playground.

CLI Usage

# Via npx (when published)
npx sim-bridge

# With custom port
npx sim-bridge --port 8080

| Option | Description | Default | | :--- | :--- | :--- | | --port, -p | Port to listen on | 3001 |

API Endpoints

GET /health

Returns structured system state. No authentication required.

{
  "ok": true,
  "platform": "ios",
  "simulator": "booted",
  "expo": "ready",
  "workspace": "ready",
  "runnerVersion": "0.2.0"
}

POST /sync

Syncs files from the playground editor to the native workspace.

POST /run

Launches the app on the simulator. Idempotent - reuses existing Metro if running.

GET /screenshot

Returns a PNG screenshot of the simulator.

WS /logs?sessionId=<id>

WebSocket stream for real-time logs.

Architecture

┌─────────────────┐         ┌──────────────────────┐
│  Web Playground │ ◄─────► │     sim-bridge       │
│  (Browser)      │  REST   │  (Local Orchestrator)│
└─────────────────┘  + WS   └──────────────────────┘
                                     │
                                     ▼
                            ┌──────────────────────┐
                            │   iOS Simulator      │
                            │   (via xcrun simctl) │
                            └──────────────────────┘

Workspace Layout

~/.rn-playground/
├── native/          # Expo project (auto-created)
├── sessions/        # Temporary session files
└── token            # Current auth token

Error Handling

All errors include actionable remediation steps:

| Error Code | Cause | Action | | :--- | :--- | :--- | | MACOS_REQUIRED | Running on non-Mac | Use a Mac | | XCODE_CLI_MISSING | Xcode not installed | Run xcode-select --install | | SIM_NOT_FOUND | No simulator available | Download iOS runtime in Xcode | | SIMULATOR_TIMEOUT | Boot took too long | Open Simulator.app manually |