Skip to main content

Homebrew

The easiest way to install httpmon on macOS or Linux.
brew install kostyay/tap/httpmon

Go install

Install with go install. Requires Go 1.21 or later.
go install github.com/kostyay/httpmon/cmd/httpmon@latest
This places the httpmon binary in your $GOPATH/bin directory.

Download binary

Download pre-built binaries from the latest GitHub release.
PlatformArchitectureDownload
macOSarm64 (Apple Silicon)httpmon_darwin_arm64.tar.gz
macOSamd64 (Intel)httpmon_darwin_amd64.tar.gz
Linuxarm64httpmon_linux_arm64.tar.gz
Linuxamd64httpmon_linux_amd64.tar.gz
Extract and move to your PATH:
tar xzf httpmon_*.tar.gz
sudo mv httpmon /usr/local/bin/

Build from source

Clone the repository and build with Make.
git clone https://github.com/kostyay/httpmon.git
cd httpmon
make build
The compiled binary is at ./httpmon in the project root.

Verify the installation

Confirm httpmon is installed and accessible.
httpmon --version