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

akv-manager

v0.3.0

Published

Local web console to browse and manage Azure Key Vaults — secrets, keys, certificates, expiry — plus read-only AKS monitoring (pods, logs, ingress, key-vault tracing), using your own az login. No credentials are stored.

Readme

akv-manager

A local web console to browse and manage Azure Key Vaults — secrets, keys, certificates, and expiry — across every subscription you can see.

No credentials are stored or bundled. It calls az once to mint a short-lived token (reusing your existing az login, so it respects MFA / conditional access) and then talks to Azure's REST APIs directly. Every user runs it as their own Azure identity, with exactly the permissions their az login grants. The server binds to 127.0.0.1 only — it is never exposed to the network.

Run it

npx akv-manager

That's it — it starts a local server, opens your browser, and uses whatever account you're logged into with az. Prerequisites:

  • Node.js ≥ 18
  • Azure CLI (az) installed and signed in (az login)

If you're not signed in, the UI tells you to run az login and press Refresh.

What you can do

  • Overview — accounts, subscriptions, and vault counts per environment.
  • Subscriptions — switch the active subscription.
  • Key Vaults — live Resource Graph sweep across every subscription you can read; filter, sort, see RBAC-vs-policy auth and SKU. Open a vault to inspect/edit its secrets, keys and certificates.
    • reveal a secret value, create secrets (one or in batch with a common expiry), edit values (current value pre-filled), and batch enable/disable/set-expiry.
    • batch delete secrets: tick several (or select all) and use Delete… in the batch bar — confirmed by typing the vault name. On soft-delete vaults (the default) the secrets become recoverable until their scheduled purge date; purging is not exposed in this tool. Needs secrets/delete (e.g. Key Vault Secrets Officer).
  • Expiry — scan every readable vault for secrets/certs that are expired or near expiry, plotted on a time horizon.
  • Clusters — read-only AKS monitoring: browse namespaces and pods, read pod logs and configmaps, all as your own az identity. Talks to the Kubernetes API directly (no kubectl/kubelogin needed) via an AAD token for the managed AAD server app. Private API servers need you on the right network (e.g. corporate VPN); the UI flags it when a cluster is unreachable.

Configuring AKS clusters

Clusters you have ARM Reader on are auto-discovered. If you only have data-plane (Kubernetes-RBAC) access — common — list them yourself via either variable:

# inline JSON …
AZBO_AKS_CLUSTERS='[{"name":"my-aks","resourceGroup":"my-rg","subscription":"My Sub","env":"Dev","label":"My cluster"}]' npx akv-manager

# … or a file
AZBO_AKS_CLUSTERS_FILE=./aks-clusters.json npx akv-manager

Each entry needs name, resourceGroup, subscription (name or id); env and label are optional. The console never bundles any cluster list — it's yours to provide.

You can also paste the list in the UI instead of using a file: open Clusters → ✎ Edit cluster list, paste the same JSON array, and Save. It's kept in your browser's localStorage and registered with the local server for the session — no file needed. File/env clusters and pasted clusters are merged.

Configuration (all optional, via environment variables)

| Variable | Default | Purpose | |---|---|---| | PORT | 4173 | Port to listen on (auto-increments if busy). | | HOST | 127.0.0.1 | Bind address. Keep it local. | | AZBO_NO_OPEN | — | Set to anything to skip auto-opening the browser. | | AZBO_TITLE | Keyvault Console | Custom title shown in the sidebar. | | AZBO_ENV_RULES | — | JSON [["pattern","Label"], …] mapping subscription-name patterns to environment labels. | | AZBO_PROTECTED_TAGS | governance set | Comma-separated tag names that are read-only in the UI (* = prefix wildcard). Set empty to disable. | | AZBO_AKS_CLUSTERS | — | JSON array of {name,resourceGroup,subscription,env?,label?} clusters to monitor. | | AZBO_AKS_CLUSTERS_FILE | — | Path to a JSON file with the same cluster array. | | AZ_PATH | az | Path to the Azure CLI binary. | | AZ_TIMEOUT | 120000 | Per-az-call timeout (ms). |

By default environments are inferred from common keywords (dev, test, qa, stage, uat, prod, sandbox). If your subscription names use a different convention, map them yourself, e.g.:

AZBO_ENV_RULES='[["-prd-","Prod"],["-dev-","Dev"],["-tst-","Test"]]' npx akv-manager

Notes on access

  • Seeing a vault in the list is management-plane visibility. Reading its secrets is a separate data-plane permission — the UI shows 🔒 when you lack it.
  • Some vaults restrict access by IP firewall. If you're off the corporate VPN you may be blocked at the network layer — the UI flags this as 🚫 firewall / VPN, not a permission problem.
  • Write actions (create/edit/enable/disable) only succeed where you have write permission; failures are reported per item.
  • Delete is a distinct permission from write: an identity that can Set secrets may still be refused Delete. Deleted secrets stop resolving immediately, so anything reading them (AKS CSI mounts, running apps) breaks at once.

Publishing (for maintainers)

npm publish        # name must be available on the registry you publish to

Until then you can run it straight from a tarball or git:

npm pack                     # produces akv-manager-x.y.z.tgz
npx ./akv-manager-1.0.0.tgz  # or: npx <git-url>

License

MIT © Thomaz Capra