From 2917291a8a233926b903f9b5f46f539ba29f8a35 Mon Sep 17 00:00:00 2001 From: Vinayak Mishra Date: Sun, 19 Apr 2026 20:02:50 +0545 Subject: [PATCH 1/2] docs: add Homebrew install path Lands brew tap/install above go install for users who prefer not to maintain a Go toolchain. Tap lives at 1mb-dev/homebrew-tap. --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 32c72b2..1837ac9 100644 --- a/README.md +++ b/README.md @@ -14,9 +14,20 @@ Built on [`pion/stun`](https://github.com/pion/stun). Pure Go, single static bin ## Quick start +**Homebrew (recommended on macOS):** + +```bash +brew tap 1mb-dev/tap +brew install natcheck +``` + +**Go install (any platform):** + ```bash go install github.com/1mb-dev/natcheck/cmd/natcheck@latest +``` +```bash natcheck ``` From 74732df4bbd0a1cd8c89f260eda2511bcd395f91 Mon Sep 17 00:00:00 2001 From: Vinayak Mishra Date: Sun, 19 Apr 2026 20:11:31 +0545 Subject: [PATCH 2/2] docs(readme): reconnect install-then-run flow in Quick start Prior commit split the go-install code block into two adjacent fenced blocks, which reads as two unrelated commands. Add a "Then run:" bridge and clarify the Go toolchain prereq while here. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1837ac9..8e17219 100644 --- a/README.md +++ b/README.md @@ -21,12 +21,14 @@ brew tap 1mb-dev/tap brew install natcheck ``` -**Go install (any platform):** +**Go install (any platform with Go 1.25+):** ```bash go install github.com/1mb-dev/natcheck/cmd/natcheck@latest ``` +Then run: + ```bash natcheck ```