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

goodtogo

v1.0.0

Published

Zero-config dev environment readiness checker. Scans your project and verifies services, ports, env vars, and runtime versions before you hit cryptic errors.

Readme

goodtogo

Zero-config dev environment readiness checker. Scans your project and verifies services, ports, env vars, and runtime versions before you hit cryptic errors.

NPM Version GitHub package.json version GitHub Repo stars GitHub last commit GitHub contributors GitHub forks GitHub License

$ npx goodtogo

  goodtogo

  ✓ node runtime      — v20.11.0 satisfies >=18
  ✓ port 5432         — port is occupied, service is up
  ✗ port 6379         — nothing is listening on this port
    → Run: docker compose up -d redis
  ✓ DATABASE_URL      — set
  ✗ JWT_SECRET        — not set in .env or environment
    → Add JWT_SECRET=... to your .env file
  ⚠ REDIS_URL         — set but empty
    → Set a value for REDIS_URL in your .env file

  3 passed · 2 failed · 1 warning

install

npm install -g goodtogo

or run without installing:

npx goodtogo

what gets checked

| file | what's verified | |---|---| | .env.example | required env vars present and non-empty in .env / process.env | | docker-compose.yml | host ports occupied — services are running | | package.json | node/npm version satisfies the engines field | | Dockerfile | runtime versions (node, go, python, java) match what's installed |

No config file needed. goodtogo auto-detects what your project has and runs only the relevant checks.

flags

--ci           exit 1 on any failure
--json, -j     machine-readable JSON output
--verbose, -v  show detail on passing checks
--version, -V  print version
--help, -h     show help

json output for AI Agents or Bots

goodtogo --json
{
  "summary": { "passed": 3, "failed": 2, "warned": 1 },
  "results": [
    { "label": "node runtime", "status": "pass", "detail": "v20.11.0 satisfies >=18" },
    { "label": "JWT_SECRET", "status": "fail", "detail": "not set in .env or environment", "fix": "Add JWT_SECRET=... to your .env file" }
  ]
}

requirements

  • Node.js >=18
  • Zero runtime dependencies

contributing

PRs welcome. Open an issue first for anything beyond small fixes.

git clone https://github.com/yetanotheraryan/goodtogo
cd goodtogo
npm install
npm run build
node bin/cli.js

license

MIT © yetanotheraryan