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

whlol

v0.1.2

Published

Forward, tail, and replay webhooks.lol endpoint traffic to a local server.

Readme

whlol

Forward, tail, and replay webhooks.lol endpoint traffic from your terminal.

whlol lets you inspect endpoint traffic without opening the browser. Use it to create forwarding sessions for local development, tail live requests as they arrive, or replay retained requests through webhooks.lol or to a local server.

npx whlol forward --to http://localhost:3000/api/webhooks

This creates an endpoint, prints its receive URL, and forwards every captured request to your local server. Paste the URL into the provider's webhook configuration and trigger an event.

Commands

# Forward (create a new endpoint, or attach to an existing one)
npx whlol forward --to http://localhost:3000/api/webhooks
npx whlol forward <endpoint-id> --to http://localhost:3000/hook

# Tail live requests to the terminal
npx whlol tail <endpoint-id>
npx whlol tail <endpoint-id> --json | jq .

# Replay a stored request, or a filtered set
npx whlol replay <endpoint-id> --request <request-id>
npx whlol replay <endpoint-id> --method POST --grep created

# Replay to a local server from your machine
npx whlol replay <endpoint-id> --request <request-id> --to http://localhost:3000/hook
npx whlol replay <endpoint-id> --method POST --grep created --to http://localhost:3000/hook

The original method, headers, and exact body bytes are preserved, so provider signature headers (Stripe-Signature, X-Hub-Signature-256, …) still verify against your local handler. Without --to, replay re-submits the stored request through webhooks.lol and creates a new captured request for the same endpoint. forward reconnects and reconciles missed requests from the endpoint's retained request history, and retries delivery if the local server is briefly down.

Options

| Option | Description | | ------------------- | ----------------------------------------------------------------------------- | | --to <url> | Local URL to deliver to. Required for forward; optional for local replay. | | --host <url> | API origin. Defaults to https://webhooks.lol, or WEBHOOKS_LOL_URL. | | --path <mode> | Local delivery subpath mapping: preserve (default) or strip. | | --method <m> | Only include this method. Repeatable. | | --grep <text> | Only include requests whose path, URL, or text body contains <text>. | | --request <id> | Replay a single stored request by id. | | --timeout <ms> | Local delivery timeout in milliseconds (default 30000). | | --retries <n> | Connection-failure retries per request (default 5). | | --no-catchup | Do not replay requests missed while disconnected. | | --replay-existing | On first connect, also deliver already-stored requests. | | --allow-remote | Allow a non-local --to host. | | --json | Emit machine-readable JSON lines. | | --no-color | Disable colored output. | | -h, --help | Show help. | | -v, --version | Show the version. |

Security

The endpoint ID is the only credential for CLI access: anyone who has it can read, replay, and forward captured traffic. Treat the receive URL and ID as secrets. By default --to must be a local or private-network host; pass --allow-remote to override.