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

@playxoft/xecret

v0.2.1

Published

Open-source, developer-first secret management. Injects secrets into your process — they never touch disk.

Readme

xecret

Open-source, developer-first secret management. xecret run fetches your secrets, injects them into your process, and exits with whatever your command exited with — the values never touch disk, argv or stdout.

npm install -g @playxoft/xecret

xecret login
xecret init
xecret run -- npm run dev

Full documentation: https://xecret.playxoft.com/docs

What this package is

The xecret binary is a single static executable written in Go. This package installs it — it is a small wrapper whose optionalDependencies are six platform packages holding one executable each, and npm installs exactly the one that matches your machine.

There is no postinstall script and nothing is downloaded at install time. That is deliberate: npm ci --ignore-scripts is a sensible thing to run, and a secret manager whose installer breaks under it would be teaching people to turn the protection off. Shipping the binary as a package also puts it under npm's own integrity hash in your lockfile, verified on every install.

If you would rather not have Node in front of the binary at all:

brew install playxoft/tap/xecret
curl -fsSL https://xecret.playxoft.com/install.sh | sh

Both install the same executable, checksum-verified. For long-running processes — xecret run -- npm run dev — the standalone binary is the better choice: the npm wrapper keeps a Node process alive alongside your command for the life of the run.

Common commands

xecret login                       # browser consent + PKCE; token → OS keychain
xecret init                        # writes .xecret.yaml (two slugs, no secrets)
xecret run -- npm run dev          # the golden path
xecret secrets list                # masked listing
xecret secrets set STRIPE_KEY      # value from stdin or a hidden prompt
xecret secrets versions STRIPE_KEY # history, metadata only
xecret import .env --dry-run       # see the plan before writing
xecret help

In CI, set XECRET_TOKEN and nothing else — the token's own scope answers which organisation, project and environment to use:

XECRET_TOKEN=xst_… xecret run -- npm run build

Requirements

Node 18 or newer, on macOS, Linux or Windows (x64 or arm64). The binary itself has no runtime dependencies — it is CGO_ENABLED=0, so it runs in scratch, distroless and Alpine images alike.

Licence

MIT. The xecret server is AGPL-3.0; the CLI is deliberately not, so it can live inside your images and pipelines without licence friction.