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

@airctrl/cli

v0.1.0

Published

AIRCTRL CLI — inject records as env vars into any process (client-side decrypt, zero-knowledge).

Readme

@airctrl/cli

Inject AIRCTRL secrets into any process as environment variables, decrypting client-side (zero-knowledge — the server never sees plaintext). Same idea as op run / doppler run, built on @airctrl/sdk.

Install

npm install -g @airctrl/cli
# or run without installing:
npx @airctrl/cli --help

Quick start (test it live)

  1. Get a Personal Access Token (PAT). In the AIRCTRL app: Settings → Developer → Create token. Copy the sk-actrl-pat-… — it's shown once.
  2. You need two different things (this is the zero-knowledge part):
    • API base URL — your AIRCTRL API (http://localhost:54330 for local dev, or your dev/prod URL).
    • Vault passphrase — the passphrase you set to unlock your vault. It decrypts your secrets on your machine. It is not the PAT: the PAT authenticates you to the API; the passphrase decrypts the ciphertext locally.
  3. Point it at a project that has records and run any command with the secrets injected as env vars:
AC_API_BASE_URL="http://localhost:54330" \
AC_TOKEN="sk-actrl-pat-…" \
AC_VAULT_PASSWORD="your-vault-passphrase" \
npx @airctrl/cli run --project <projectId> -- printenv

You'll see airctrl: injected N secret(s): …, and each record appears as an UPPER_SNAKE env var in the child process. Swap printenv for node server.js, python app.py, etc. — the secrets never touch disk and the server never sees plaintext.

Commands

airctrl login                                 store API URL + PAT (~/.airctrl/config.json)
airctrl get <recordId>                        decrypt one record, print to stdout
airctrl run [--project <id>] -- <cmd> [args]  inject the project's records as env vars, then run <cmd>

Example

airctrl login
airctrl run --project <projectId> -- node server.js

Non-interactive overrides

For CI / scripts, skip the prompts with env vars:

  • AC_TOKEN — personal access token
  • AC_API_BASE_URL — API base URL
  • AC_VAULT_PASSWORD — vault passphrase

© AIRCTRL — all rights reserved (license TBD) · airctrl.dev