> ## Documentation Index
> Fetch the complete documentation index at: https://docs.httpmon.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Installation

> Install httpmon on macOS or Linux

## Homebrew

The easiest way to install httpmon on macOS or Linux.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
brew install kostyay/tap/httpmon
```

## Go install

Install with `go install`. Requires Go 1.21 or later.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
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](https://github.com/kostyay/httpmon/releases/latest).

| Platform | Architecture          | Download                                                                                                                 |
| -------- | --------------------- | ------------------------------------------------------------------------------------------------------------------------ |
| macOS    | arm64 (Apple Silicon) | [httpmon\_darwin\_arm64.tar.gz](https://github.com/kostyay/httpmon/releases/latest/download/httpmon_darwin_arm64.tar.gz) |
| macOS    | amd64 (Intel)         | [httpmon\_darwin\_amd64.tar.gz](https://github.com/kostyay/httpmon/releases/latest/download/httpmon_darwin_amd64.tar.gz) |
| Linux    | arm64                 | [httpmon\_linux\_arm64.tar.gz](https://github.com/kostyay/httpmon/releases/latest/download/httpmon_linux_arm64.tar.gz)   |
| Linux    | amd64                 | [httpmon\_linux\_amd64.tar.gz](https://github.com/kostyay/httpmon/releases/latest/download/httpmon_linux_amd64.tar.gz)   |

Extract and move to your PATH:

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
tar xzf httpmon_*.tar.gz
sudo mv httpmon /usr/local/bin/
```

## Build from source

Clone the repository and build with Make.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
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.

```bash theme={"theme":{"light":"github-light","dark":"github-dark"}}
httpmon --version
```
