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

@blackbox-labs-llc/axis-cli

v0.1.6

Published

Deploy and operate Axis apps from the command line

Readme

Axis CLI

Deploy and operate Axis apps from a terminal. Output is human-readable by default and JSON when piped. axis dashboard is a read-only live view of the environment.

Install

npm install --global @blackbox-labs-llc/axis-cli

The package ships standalone binaries for macOS (Intel and Apple Silicon), Linux (x64 and arm64), and Windows x64. A launcher picks the binary for your machine. Node.js 18+ is required only to run that launcher.

Quick start

axis login
axis link
axis status
axis deploy
axis logs --follow

axis dashboard watches deployments, resources, and logs without changing anything. Use the regular commands to deploy, edit variables, or work with databases.

axis <command> --help lists flags for a specific command.

Update

npm install --global @blackbox-labs-llc/axis-cli

In a terminal, Axis prints that command when npm has a newer release than the one you are running. axis update prints it on demand. Set AXIS_NO_UPDATE_CHECK=1 to silence the notice.

Shell completion

Completion is generated from the live command tree, so nested commands, global flags, and known option values stay in sync:

# bash
source <(axis completion bash)

# zsh
source <(axis completion zsh)

# fish
axis completion fish | source

# PowerShell
axis completion powershell | Out-String | Invoke-Expression

Add the same line to your shell profile to keep completion in later sessions.

Automation

Set AXIS_TOKEN, pass explicit context flags, and pick an output format:

AXIS_TOKEN="$TOKEN" axis resource list --environment "$ENVIRONMENT_ID" --output json
axis logs --resource "$RESOURCE_ID" --follow --output ndjson

Finite piped output defaults to JSON. Streaming output defaults to NDJSON. Progress and diagnostics go to stderr.

Errors use the requested structured format (json, ndjson, or yaml) on stderr. Add --verbose to human-readable commands to include the error code and request/trace identifiers. Prompts are disabled when stdin or stderr is not a terminal; destructive commands still require --yes.