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

@zairos/connect-cli

v1.2.0

Published

Interactive CLI to call any Zairos Connect API endpoint

Downloads

389

Readme

@zairos/connect-cli

Interactive CLI to call any Zairos Connect API endpoint.

Install

npm install -g @zairos/connect-cli

Then run:

zairos

(Or without installing: npx @zairos/connect-cli.) jq must be on your PATH for pretty output, and your IP must be whitelisted.

First run

If no stored credentials are found, zairos walks you through setup:

  1. It asks for the path to your credentials JSON file. Paths with spaces are fine — quoted, or with the spaces backslash-escaped (as drag-and-drop into the terminal produces), and a leading ~ is expanded.
  2. It tests the connection against GET /v1/credentials.
  3. On success it saves the bundle to ~/.zairos/credentials.json (owner-only, chmod 600) for future runs.

The bundle is the file the Zairos admin console issues when you "Issue credentials".

Usage

You get a searchable endpoint menu. Pick one, answer any path/query prompts (POST bodies open in $EDITOR as JSON), and the response is rendered through jq. The tool loops back to the menu; Ctrl-C exits.

  • limit/offset default to 25/0 — press Enter to accept.
  • For equals-money endpoints, credentialId is picked from your stored credentials (auto-selected when you only have one).

Credentials resolution

In order of precedence:

  1. --credentials <path> flag (used as-is, not persisted)
  2. ZAIROS_CREDENTIALS env var
  3. ~/.zairos/credentials.json (the stored bundle)
  4. First-run onboarding (saves to #3)

A ~ in a path is expanded.

API docs credentials

The endpoint menu is built from the live OpenAPI document, which (since Zairos Connect v1.3.0) sits behind a shared HTTP Basic credential. The CLI defaults to the shared docs creds, so no setup is needed in the common case. For hardened environments, override them:

  • ZAIROS_DOCS_USER (default zairos-docs)
  • ZAIROS_DOCS_PASSWORD (default zairos-docs-2026)

These only gate the spec fetch — the actual API calls use your mTLS credentials.

Develop

npm install
npm start            # node cli.js
npm test             # node --test