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

@hallofame/cli

v0.1.28

Published

Local CLI for Hall of Fame projects

Readme

Hall of Fame CLI

CLI to interact with Hall of Fame installations, powered by @h3ravel/musket.

Install

Install the package in a Hall of Fame API or app project:

pnpm add -D @hallofame/cli

OR Global install it for use in any Hall of Fame project:

pnpm i -g @hallofame/cli

The command only runs from a recognized Hall of Fame project root. It detects whether the current project is the API or client app from its package identity and required source markers.

Usage

Run this from the Hall of Fame API root:

pnpm exec hof [command] [options]

Or for global installs, run this from any Hall of Fame project root:

hof [command] [options]

Commands

hof customize - Customize the installed system

The command reads the API application's .env, connects to the configured database through ArkORM, and prompts for:

  • application identity and metadata;
  • authentication-page copy;
  • essential colors or every light/dark palette token;
  • typography, semantic corner radii, and spacing density;
  • premium, advertising, messaging, Frankly, and post-limit system options;
  • whether the new immutable theme version should be activated immediately.

The active theme's existing logo, dark logo, favicon, and authentication artwork are copied into the new version. Theme and system-setting changes are recorded in the platform audit log as local CLI actions.

hof localize - Round-trip localization for API and client copy

Export a single bundle covering both the API message catalogue and the client locale files, hand it to a translator, then apply the edited bundle back into each side. The command finds the paired project automatically (scanning sibling directories), so it runs from either the API or the app root; pass --api-root / --app-root to point at them explicitly.

# Export English source plus any existing target copy into one file
hof localize export --locale es --file localization-es.json

# ...edit the "target" values in the bundle, then write them back
hof localize apply --file localization-es.json

Every entry carries the English source and the current target (empty when untranslated), so the bundle doubles as a coverage report. Applying is additive and non-destructive: only non-empty targets are written, existing translations for other keys and locales are left untouched, and an untranslated entry simply falls back to English at runtime. Writes match each catalogue's formatting (the API module's Prettier wrapping and the locale files' newline convention), so an unedited round-trip produces no diff.

hof deploy - Generate deployment resources

Template Docker, nginx, Apache, and pm2 configuration from your project's environment. Like localize, it finds the paired project automatically and runs from either root.

The first argument selects which deployment paths to generate. It accepts all or any combination of docker, nginx, apache, and pm2 (space or comma separated); omit it to be prompted with a multi-select.

hof deploy all --out deploy        # every target; prompts for domains, port, node, package manager
hof deploy nginx pm2 --out deploy  # only the bare-metal reverse proxy and process manager
hof deploy docker --yes            # only Docker, accepting env-derived defaults without prompting

Only the files for the selected targets are written, and prompts are limited to the settings those targets need. Docker build files (Dockerfile.api, Dockerfile.web, .dockerignore, nginx.web.conf) are written to each project root, since that is their build context; the orchestration files (docker-compose.yml, nginx.conf, .htaccess, pm2.ecosystem.config.cjs, README.md) go to the output directory. The compose file wires Postgres, Redis, the API, one worker per queue, and the nginx-served client; the generated README.md covers only the selected paths. The host nginx.conf routes hall tenant subdomains (*.<root domain>). Existing files are never overwritten unless you pass --force.