bat
Go implement CLI, cURL-like tool for humans
bat is a Go-implemented, cURL-like command-line HTTP client designed to be “for humans,” emphasizing an expressive and intuitive syntax. It allows developers to test, debug, and generally interact with HTTP servers using concise commands that feel more like a small DSL than raw cURL flags. The tool supports a wide range of HTTP operations including custom methods, headers, JSON payloads, form submissions, file uploads, authentication and proxy configuration. Its README showcases simple “hello world” usage as well as more advanced scenarios, such as inspecting the exact request being sent via print options. Because it is written in Go and distributed as a single binary, it is easy to install and use across platforms, and it can even be run inside Docker containers for isolated workflows. The project is inspired by HTTPie but tailored to Go’s strengths, with an Apache-2.0 license that encourages both personal and commercial use.