Skip to content

httplog is a command line tool that logs HTTP requests

License

Notifications You must be signed in to change notification settings

jamescun/httplog

Folders and files

NameName
Last commit message
Last commit date
Jul 20, 2023
Oct 6, 2022
Jul 20, 2023
Oct 6, 2022
Jul 20, 2023
Oct 6, 2022
Jul 20, 2023
Jul 20, 2023
Jul 20, 2023
Jul 20, 2023

Repository files navigation

httplog

httplog is a command line tool that launches a local HTTP server that logs all requests it receives, replying with a canned response.

screenshot of httplog

Install

Either download a pre-built binary, or install from source (requires Go 1.19+):

go install github.com/jamescun/httplog

Alternatively on macOS, you can install httplog using the Homebrew package manager:

brew install jamescun/formulas/httplog

Usage

httplog v1.0.2

httplog is a command line tool that launches a local HTTP server that logs all
requests it receives, replying with a canned response.

Usage: httplog [options...]

Options:
  --help                        show helpful information
  --listen         <host:port>  configure the listening address for the HTTP
                                server (default localhost:8080)
  --response       <text>       configure the canned body sent in response to
                                all requests (default none)
  --response-code  <code>       configure the HTTP status code sent in response
                                to all requests (default 200)
  --response-header <X=Y>       configure one or more headers to be sent in the
                                response, may be specified more than once
  --json                        log all requests as JSON rather than human
                                readable text
  --tls-self-cert               enable TLS with a self-signed certificate

### Examples

Run with no options, a server will be launched on localhost:8080, answering no body and an HTTP 200 status code to all requests.

To configure the HTTP status code, use the --response-code <code> option, i.e. for a HTTP 500 Internal Server code:

$ httplog --response-code 500

$ curl -v http://localhost:8080
HTTP/1.1 500 Internal Server Error

To configure the response body, use the --response <text> option, i.e. to responsd the text hello world to all requests:

$ httplog --response "hello world"

$ curl http://localhost:8080
Hello World

If you would prefer JSON output, rather than human-readable text, use the --json option.

About

httplog is a command line tool that logs HTTP requests

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages