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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@command-center/command-center

v0.5.0

Published

Binary distribution of UpToSpeed Command Center

Readme

Command Center CLI

Binary distribution of UpToSpeed Command Center, a desktop-friendly interface for reviewing repositories and generating walkthroughs. This package installs a thin Node.js wrapper that launches the precompiled Command Center binary for your platform via platform-specific optional dependencies.

Supported Platforms

  • macOS arm64
  • macOS x64
  • Linux arm64
  • Linux x64
  • Windows x64

If your platform is missing, please open an issue so we can add another target.

Installation

npm install -g @command-center/command-center

This command places a command-center executable on your $PATH. During installation npm/yarn/pnpm automatically adds the matching optional dependency:

  • @command-center/command-center-macos-arm64
  • @command-center/command-center-macos-x64
  • @command-center/command-center-linux-arm64
  • @command-center/command-center-linux-x64
  • @command-center/command-center-win-x64

Each optional package ships exactly one prebuilt binary. The wrapper resolves the right package at runtime and forwards all CLI arguments to its binary.

Usage

command-center [flags]

Common flags:

  • --debug – print embedded asset information after startup
  • --help – show runtime help from the bundled binary

The application starts an HTTP server (defaults to port 9000). Open the printed URL in your browser to launch the UI. Environment variables are loaded from .env in the directory where you run the command; create that file to provide API keys or override the port.

Upgrade

npm update -g @command-center/command-center

After updating, run command-center --version to verify the new binary.

Maintainer Utilities

If you are working from the repository and want to validate the packaged artifacts before publishing, run:

npm run build-and-install

This command rebuilds the binaries, generates platform-specific packages under artifacts/platform-packages/, and installs both the matching platform binary package and the CLI in a temporary directory. Finish by running command-center --version (the script does this for you) or launching the app directly from the printed path.

Troubleshooting

  • “Unsupported platform” – The wrapper could not map your process.platform/process.arch combination. Please file an issue with your OS and architecture.
  • “Expected binary … was not found” – Reinstall the package. If you are developing locally, run npm run prepare:dist from the repository root to refresh the optional binary packages.
  • Permission errors – On POSIX systems, ensure the binaries remain executable (chmod +x node_modules/@command-center/command-center-*/dist/command-center-*).