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

@nerionx/cli

v0.5.0

Published

NerionX Brand Kit CLI — install, run, and operate a NerionX Spoke on your own machine or server.

Readme

@nerionx/cli

Brand Kit CLI for NerionX — provisioning, Hub sync, and day-2 operations (blueprint §8).

Install

Brand operators (needs Node 20 + Docker, no monorepo):

npm install -g @nerionx/cli
nerionx --help

From a monorepo checkout:

pnpm --filter @nerionx/cli build
node packages/cli/bin/nerionx.js --help

Run a Brand Kit (local or server)

init and up drive Docker directly — same two commands on a laptop and on a server. Migrations run inside the Spoke image (the provision compose profile), so no monorepo, pnpm, or Medusa toolchain is needed on the host.

mkdir my-brand && cd my-brand
nerionx init --slug my-brand          # compose + .env + generated secrets, pulls images
# set HUB_API_KEY in .env (issued to your brand on approval)
nerionx up                            # infra → brand DB → migrations → spoke + storefront

nerionx status                        # container status
nerionx logs spoke -f                 # tail one service
nerionx down                          # stop (add --volumes to delete data)
nerionx update                        # pull newer images and recreate

init is idempotent: existing secrets and .env values are kept, and only missing ones are generated. The compose template ships inside this package, so it is version-locked to the CLI rather than fetched at install time.

Air-gapped / self-hosted registry

No reach to registry.nerionx.dev (regulated vertical or a closed brand network)? Distribute the images yourself — the runtime stays containerized (no npm/toolchain on the brand box):

# On a machine that CAN pull the images — save them into one portable bundle:
nerionx kit export --out ./nerionx-kit-latest

# Carry the folder into the private network, then on the target host:
nerionx kit import ./nerionx-kit-latest       # docker load — needs no registry
nerionx init --offline --slug my-brand        # scaffold; skips docker login + pull
nerionx up                                    # boots from the loaded images

# Or seed a registry you host (Zot / registry:2 / Harbor) so many hosts pull it:
nerionx kit import ./nerionx-kit-latest --registry registry.internal:5000 --push

See the air-gap runbook.

Config (~/.nerionx/config.json)

nerionx login --api-key nx_live_...
nerionx config set hubUrl http://localhost:9000
nerionx select --slug my-brand
nerionx config get
nerionx config sync-identity

Blueprint workflow

nerionx create brand --name 'Brand A' --currency EUR --domain mybranda.com
nerionx select --domain mybranda.com
nerionx request approval --brand-name 'Brand A' --email [email protected] --phone +10000000000 --slug mybranda
nerionx login --api-key nx_live_...
nerionx provision
nerionx request ssl mybranda.com
nerionx pull products --initial
nerionx generate products

Commands

| Category | Commands | |----------|----------| | Brand Kit | init [--offline], up, down, status, logs [service], update | | Air-gap / self-host | kit export, kit import [--registry <host> --push] | | Identity | login, logout, config get/set/sync-identity | | Deploy | create brand, select, request approval, provision, request ssl, check ssl, service restart, destroy brand | | Catalog | pull products --initial\|--recent, sync [--force-event-bus] | | AI | generate products, agent status | | Orders | orders list, orders get <id>, pricing --sku | | Ops | health [--verbose], security rotate-keys, db migrate, theme export/import |

Legacy aliases: brand:create, ssl check|request.

After provision

env $(grep -v '^#' .env.my-brand | xargs) pnpm --filter @nerionx/spoke dev

See brand-provisioning runbook.