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

create-orbitops

v0.1.0

Published

Scaffold a self-hosted OrbitOps — the open-source, human-in-the-loop mission-control cockpit for satellite constellations.

Readme

create-orbitops

Scaffold a self-hosted OrbitOps — the open-source, human-in-the-loop mission-control cockpit for satellite constellations. Real orbital mechanics in the browser, an AI that proposes and a human who approves, a tamper-evident audit log.

Usage

npm create orbitops@latest my-mission-control
# or
npx create-orbitops my-mission-control

Then:

cd my-mission-control
npm run dev            # static server on http://localhost:8080

That's it — no build, no signup, no keys. The flight-dynamics engine is fully deterministic and runs offline. Add a model (OpenAI, xAI/Grok, Groq, OpenRouter, or any OpenAI-compatible endpoint) in the first-run wizard or Settings to enable the AI advisory layer.

Optional backend

A Node + TypeScript API (real telemetry ingest, HMAC audit chain, the LangGraph multi-agent copilot). Boots on local pglite with no keys:

cd my-mission-control/backend
cp .env.example .env && npm install && npm run migrate && npm run dev

What it does

  • Clones the public OrbitOps repository into a fresh directory.
  • Switches it into operator (app) mode: boots straight to the dashboard, hides the marketing routes, and never fetches the landing/pricing modules.
  • Detaches from the upstream git history and removes internal working files.

The shared demo OpenRouter key is never part of a self-hosted copy — you run the deterministic engine with no key, or bring your own.

Options

| Flag | Description | |---|---| | <dir> | Target directory (default: orbitops-app) | | --repo <url> | Clone source (default: the public OrbitOps repo; accepts a fork or a local path) | | --site | Keep full site mode (marketing visible) instead of app mode | | -h, --help | Show help |

ORBITOPS_REPO works the same as --repo.

Requirements

  • Node.js ≥ 18
  • git on your PATH (used to fetch the repo; zero npm dependencies otherwise)

License

MIT — see LICENSE.