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

expo-ci-doctor

v1.0.1

Published

Predicts Expo / React Native CI and EAS Build problems before you run the build

Readme

Expo CI Doctor

A powerful CLI tool that helps Expo & React Native developers detect, analyze, and prevent CI and EAS build failures before they waste time.

No telemetry.
No cloud processing.
Runs locally and in CI.


✨ Why Expo CI Doctor?

CI failures are expensive.

You push → GitHub Actions runs → EAS builds → 10 minutes later… ❌ failed.

Expo CI Doctor analyzes your project before CI does and gives you:

  • Clear root-cause diagnostics
  • File-level pointers
  • Dependency compatibility warnings
  • Upgrade safety checks
  • Build readiness scoring
  • Noise filtering for CI logs

🚀 Installation

Global install

npm install -g expo-ci-doctor

Or run directly

npx expo-ci-doctor@latest check

⚡ Quick Start (5 minutes)

  1. Install the CLI
  2. Run:
expo-ci-doctor check
  1. Review actionable output before pushing to CI

🧪 Example Output

❌ Before

EAS Build failed.

✅ After Expo CI Doctor

✔ Dependency compatibility: OK
⚠ Expo SDK mismatch detected

Root cause:
- expo-updates is incompatible with SDK 51

Location:
- app.config.ts:42

Suggested fix:
- Upgrade expo-updates to ^0.20.0

Build Readiness Score: 72 / 100 (Medium Risk)

📦 Core Commands

Check project configuration

expo-ci-doctor check

Validates:

  • app.json / app.config.js
  • SDK compatibility
  • Dependency alignment
  • Known CI pitfalls

Deep analysis

expo-ci-doctor analyze

Performs:

  • Root cause grouping
  • Stage-based failure detection
  • Risk ranking
  • Context-aware diagnostics

Generate CI-friendly Markdown report

expo-ci-doctor analyze --markdown

Outputs structured Markdown ready for GitHub Actions logs or PR comments.


Upgrade safety check

expo-ci-doctor check --upgrade

Simulates upgrade risk before bumping Expo SDK or dependencies.


Build readiness score

expo-ci-doctor check --score

Returns:

  • Risk rating
  • Stability score
  • Recommended actions

CI noise filter

expo-ci-doctor analyze --noise=low

Reduces noisy logs and surfaces actionable issues only.


🛠 Configuration

Create .expo-ci-doctorrc in your project root:

{
  "ignoreWarnings": ["expo-asset-mismatch"],
  "ciMode": true,
  "output": "standard"
}

🔍 What It Analyzes

  • Expo SDK compatibility
  • EAS build config
  • app.json / app.config.ts
  • Native dependency mismatches
  • Version alignment
  • Known breaking changes
  • CI environment patterns

🧠 How It Works

Expo CI Doctor uses deterministic rule-based analysis:

  • Static configuration validation
  • Dependency compatibility graph checks
  • Heuristic CI failure pattern detection
  • Risk scoring based on known failure signals

No source code is uploaded.
Everything runs locally unless you run it inside CI.


🔐 Security & Privacy

  • No telemetry
  • No analytics tracking inside CLI
  • No source code uploads
  • No cloud dependency required

Safe for local development and CI environments.


📈 Typical Use Cases

  • Before pushing to GitHub
  • Before upgrading Expo SDK
  • Debugging EAS failures
  • Adding CI safety checks to pipelines
  • Preventing repetitive build crashes

🤝 Contributing

Pull requests are welcome.

If you find a CI pattern that should be detected, open an issue with:

  • Expo SDK version
  • Relevant config
  • Error output (sanitized)

📜 License

MIT


⭐ If This Saves You Time

Star the repository and share it with other Expo developers.