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

@island-pitch/nextwave-cli

v0.1.0

Published

NextWave Platform CLI (nwp) — manage members, tiers, benefits, redemptions, NFC cards, and the live Emcee Controller from your terminal or an agent loop, over the nwp/v1 REST API.

Readme

@island-pitch/nextwave-cli (nwp)

Manage the NextWave Platform WordPress plugin from your terminal or an agent loop — members, tiers, benefits, redemptions, NFC cards, venues, and the live Emcee Controller — over the nwp/v1 REST API. Every command supports --output json for machine consumption.

Install

# one-off / CI
npx @island-pitch/nextwave-cli <command>

# or install globally
npm i -g @island-pitch/nextwave-cli

Requires Node ≥ 18 (uses native fetch).

Prerequisite: an Application Password

NextWave is self-hosted — you connect to your own WordPress site. Create a WordPress Application Password at WP Admin → Users → Profile → Application Passwords. Every action is gated by that user's nwp_* capabilities.

Get connected

nwp configure          # interactive: saves a profile to ~/.nextwave/config.json
nwp doctor             # diagnose site, REST API, plugin, auth, capabilities
nwp whoami --output json

For agents/CI, set environment variables instead:

export WORDPRESS_SITE_URL=https://members.example.com
export [email protected]
export WORDPRESS_APP_PASSWORD="xxxx xxxx xxxx xxxx xxxx xxxx"

Config precedence: flags → env vars → ~/.nextwave/config.json profile (selected by --profile, NWP_PROFILE, or the file's default).

| Variable | Purpose | | --- | --- | | WORDPRESS_SITE_URL | Site base URL; the CLI appends /wp-json/nwp/v1 | | WORDPRESS_USERNAME | The user the Application Password belongs to | | WORDPRESS_APP_PASSWORD | The Application Password (keep the spaces; quote it) | | NWP_PROFILE | Named profile to use | | NODE_TLS_REJECT_UNAUTHORIZED=0 | Local self-signed certs only (--insecure) |

Commands

nwp <resource> <action> [args] [--flags] [--output json]

Resource groups: members, tiers, benefits, venues, redemptions, nfc-cards, campaigns, event-signups, signup-lists, landing-pages, renewal-config, renewal-logs, emcee, wyr, caption-clash, ask-speaker, settings, feature-flags, license, system, cron, provision. Run nwp <resource> --help for actions.

Typical agent flow

nwp members create --first-name Grace --last-name Hopper \
  --email [email protected] --tier-id 2 --output json
nwp nfc-cards assign 12 --member-id 42 --output json
nwp redemptions create --member-id 42 --benefit-id 7 --venue-id 3 --output json

Exit codes

| Exit | Meaning | | --- | --- | | 0 | Success | | 1 | Unexpected error (crash, usage, transport/network, 5xx) | | 2 | Not found (404) | | 3 | Structured domain failure (403 forbidden, validation, feature disabled) | | 4 | Authentication failure (401 — bad/missing Application Password) |

Machine-readable errors

With --output json, failures print to stdout as:

{ "ok": false, "error": { "code": "rest_forbidden", "message": "…", "status": 403, "exit": 3 } }

Full reference & troubleshooting: https://nextwave.ing/docs

License

UNLICENSED — proprietary to Island Pitch, LLC. See LICENSE.