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

builder-doctor

v1.0.12

Published

A CLI tool for Builder.io diagnostics

Readme

builder-doctor

A CLI tool for Builder.io diagnostics.

Installation

npm install -g builder-doctor

Or run directly with npx:

npx builder-doctor

Usage

builder-doctor [options] [commands]

Options

  • --verbose - Show detailed output for each check
  • --help, -h - Show help message

Running All Checks

Running without any command will execute both network and rules checks:

npx builder-doctor
npx builder-doctor --verbose  # with detailed output

Commands

network

Check connectivity to Builder.io services.

npx builder-doctor network

The tool performs diagnostic checks for valid HTTP or ping responses to test network connectivity to:

  • firestore.googleapis.com
  • firebasestorage.googleapis.com
  • identitytoolkit.googleapis.com
  • builder.io (Website)
  • api.builder.io
  • builder.io (Web application)
  • cdn.builder.io (Content Network)
  • *.builder.codes
  • *.builder.my
  • builderio.xyz (Cloud Containers)
  • 34.136.119.149 (Static IP address used by Builder.io)

The tool cannot verify connectivity to (but you should):

  • *.fly.dev

rules

Analyze your Builder.io rules configuration.

npx builder-doctor rules

The tool analyzes your .builderrules, agents.md, and rules in .builder/rules or .cursor/rules. Recommendations are made to:

  • Find where there are too many rules being applied at once causing the AI to ignore some rules
  • Common missing front matter like description where needed
  • Overuse of alwaysApply
  • Common incorrect namings of agents.md and .builderrules

setup

Run the Builder.io agent to analyze your project and provide setup instructions.

npx builder-doctor setup

This command uses the Builder.io agent to review your project and provide:

  • Setup commands to install dependencies
  • Dev commands to start the development server

The output is brief and formatted for easy reading.

env

Display all environment variables sorted alphabetically.

npx builder-doctor env
npx builder-doctor env --verbose  # shows count of variables

Outputs all environment variables in NAME=value format, one per line, sorted alphabetically. Useful for debugging environment configuration issues.

Examples

builder-doctor                  # Run network and rules checks
builder-doctor network          # Run only network checks
builder-doctor rules            # Run only rules checks
builder-doctor setup            # Get project setup instructions
builder-doctor env              # Display environment variables
builder-doctor --verbose        # Run all checks with detailed output