protocol-lab:~$./run--all-paradigms
github ↗
$ cd ..

$ webhooks --signed --retried

Fire an event and watch each delivery move through its full lifecycle: queued, signed, attempted, retried with backoff, delivered or dead-lettered.

# steps
  1. 1Sign in.
  2. 2Create an endpoint(points at this app's inbox).
  3. 3Fire an event.
  4. 4Watch it travel its state machine, signature verified live.
// the wire · delivery state machine
1
Event fired
2
Queued
3
Signed (HMAC)
4
Delivering
// create an endpoint, then fire an event
to watch a delivery travel its lifecycle
// trigger
event types
Sign in to create an endpoint.
// inspector · received deliveries
every POST that reaches the inbox, with its signature verified
// waiting for deliveries to reach the inbox…