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

@wp-operations/wp-app

v0.3.0

Published

The wp-now revival. Zero-config local WordPress dev server on @php-wasm/node.

Readme

@wp-operations/wp-app

The wp-now revival. A zero-config local WordPress dev server on @php-wasm/node: no Docker, no MySQL, no XAMPP. Point it at a theme, a plugin, or a full core checkout and it starts.

When wp-now was deprecated in favor of the blueprint-centric Playground CLI, the simple wp-now start workflow went with it. wp-app brings it back — same one-command experience, running on the current php-wasm engine (PHP 7.4 – 8.5).

Install

npm install -g @wp-operations/wp-app

Requires Node.js >= 20.10.

Usage

wp-app start                       # auto-detects project type from cwd
wp-app start --path=my-theme       # explicit path
wp-app start --php=8.3 --wp=6.8    # pin PHP / WordPress versions
wp-app start --wp=classicpress     # run ClassicPress instead (lightweight, no Gutenberg)
wp-app start --port=8881 --reset   # fresh site (wipes the managed WordPress + database)
wp-app dev                         # start + restart on file changes
wp-app build                       # composer install + npm build script, when present
wp-app php -- -r 'echo PHP_VERSION;'   # PHP CLI via php-wasm
wp-app php -- script.php               # run a PHP file

Login: admin / password.

How data is stored

  • Core downloads are cached once in ~/.wp-app/cache/
  • Each project gets a full persistent WordPress site in ~/.wp-app/sites/<project>-<hash>/ — files and SQLite database survive restarts; --reset deletes exactly this directory and never your project
  • Your project directory is mounted into that site (as a theme, plugin, or wp-content overlay) — edits are live without restarts
  • Set the WP_APP_HOME environment variable to relocate all of the above (CI, portable drives, or the .local repo convention via @wp-operations/wp-ide)

Modes

Auto-detected from the project directory, or forced with --mode:

| Mode | Detected when | What runs | |------|--------------|-----------| | theme | style.css with a Theme Name header | Managed WP + your directory mounted as a theme, auto-activated | | plugin | PHP file with a Plugin Name header | Managed WP + your directory mounted as a plugin, auto-activated | | wp-content | plugins/ + themes/ dirs | Managed WP + your entries overlaid on wp-content | | wordpress | Full core checkout | Your core served directly, SQLite-backed | | wordpress-develop | Core dev checkout | The build/ directory | | index | An index.php | Plain PHP server, no WordPress | | playground | None of the above (e.g. empty dir) | Fresh managed install |

ClassicPress

--wp=classicpress fetches the latest ClassicPress release; --wp=classicpress-2.4.1 pins a version. Everything else (modes, SQLite, mounts) works identically.

Part of wp-operations

wp-app is the foundation of wp-operations — an open-source operations toolchain for classic WordPress development: PSR-4 vendor packages as plugins, an AI skills library with security guidelines, monorepo tooling (@wp-operations/wp-ide), and a unified operations CLI (@wp-operations/wp-ops).

Credits & License

GPL-2.0-or-later. Continues the workflow of @wp-now/wp-now by the WordPress contributors, rebuilt on @php-wasm/*.