We just added a CLI to our webhook reliability tool that lets you receive webhooks on your local machine during development, without ngrok or any tunneling service.
Example:
- authenticate with an API key
- run `hookverify listen 3000`
- webhooks from Stripe / Shopify / GitHub are forwarded to localhost in real time
The goal is to make it easier to debug webhook receivers (timeouts, retries, payload handling, signature verification) without exposing your machine.
phntmdz•6h ago
Example: - authenticate with an API key - run `hookverify listen 3000` - webhooks from Stripe / Shopify / GitHub are forwarded to localhost in real time
The goal is to make it easier to debug webhook receivers (timeouts, retries, payload handling, signature verification) without exposing your machine.
Docs + CLI usage: https://hookverify.com/docs
Feedback welcome. Especially from folks who build or maintain webhook consumers.