A webhook testing service that captures HTTP requests and displays them in a user-friendly interface.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ └── index.ts # Main Hono server
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main React app
│ │ ├── BinView.tsx # Individual pit viewer (PitView)
│ │ ├── JsonViewer.tsx # Enhanced JSON viewer with collapsible objects
│ │ └── RequestList.tsx # Request list component
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
└── types.ts # Shared TypeScript types
GET / - HomepagePOST /api/pits - Create a new pitGET /api/pits/:pitId - Get pit details and requestsALL /pit/:pitId - Capture webhook requestsGET /pit/:pitId/view - View pit in UI