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

create-wp-reactor

v0.8.1

Published

Scaffolder de repo client mince WP Reactor : émet apps/webapp (depuis le starter) + thème enfant + CI réutilisable + docker. Usage : npm create wp-reactor <nom>.

Readme

create-wp-reactor

Scaffolder de repo client WP Reactor — un framework headless WordPress (kernel TanStack Start + modules commerce/auth/editorial + générateur de blocs).

npm create wp-reactor@latest mon-client
# ou : pnpm create wp-reactor mon-client
# ou : npx create-wp-reactor mon-client

Génère un monorepo client « 2 mondes » :

apps/webapp/                 coque TanStack Start (deps @wp-reactor/* publiées)
apps/wordpress/theme-<nom>/  thème ENFANT (branding + blocs propres)
docker-compose.dev.yml       stack dev local (WordPress + DB + Redis)
.github/workflows/deploy.yml CI réutilisable du framework (GHCR → Coolify)
docs/                        deploy.md, environment.md, traefik-labels.md

Options

create-wp-reactor <nom> [--dir <path>] [--namespace <ns>]
create-wp-reactor update [--dir <path>]
  • --dir : dossier cible (défaut : <nom> dans le cwd).
  • --namespace : namespace des blocs Gutenberg (défaut : <nom> sans tirets).

update

Dans un repo client déjà généré, re-pousse les fichiers d'infra (docker-compose dev, docs/, Dockerfiles, workflows CI) depuis la version courante du template — sans toucher la coque src/ ni le branding. Idéal pour récupérer les améliorations d'infra du framework après coup. Vérifie git diff.

Après génération

Les packages runtime @wp-reactor/* sont sur GitHub Packages (privé) → authentifie-toi avant pnpm install :

echo "//npm.pkg.github.com/:_authToken=<PAT read:packages>" >> ~/.npmrc
cd mon-client && pnpm install && pnpm dev

Voir le README.md et docs/ du repo généré pour le dev Docker et le déploiement.