httplab
Interactive web server for inspecting and mocking HTTP requests
TLDR
SYNOPSIS
httplab [-port port] [-response code] [-delay ms] [-cors]
DESCRIPTION
httplab is an interactive web server that lets you inspect incoming HTTP requests and forge responses in real time through a terminal UI. It runs a local HTTP server and displays each request's method, path, headers, and body, while allowing you to customize the response status code, headers, and body interactively.
Pre-built responses can be saved and loaded from a .httplab configuration file. The tool is useful for API development, webhook testing, and debugging HTTP client behavior.
CAVEATS
Designed for development and testing only; not suitable for production use. Default port is 10080, which may conflict with other services.
HISTORY
httplab was created by Gustavo ChaĆn (qustavo) and is written in Go. It was designed to provide developers with a quick way to inspect and mock HTTP interactions without configuring a full mock server.

