A curl frontend that combines curl's features with HTTPie's user-friendly interface and syntax
Curlie is a command-line HTTP client that acts as a frontend to curl, combining curl's comprehensive feature set with HTTPie's simplified syntax and formatting. It maintains all of curl's functionality while providing HTTPie-style syntax sugar for common operations like setting headers and sending JSON data. The tool processes requests through curl under the hood, ensuring compatibility with all curl options and performance characteristics.
Unlike HTTPie, curlie writes headers to stderr instead of stdout and performs all formatting on-the-fly without buffering, making it suitable for debugging streamed data. The tool supports interactive pretty-printed JSON output and includes a --curl option to display the underlying curl command being executed. This approach allows users to benefit from HTTPie's ergonomic interface while retaining access to curl's advanced features and reliability.
Curlie targets developers and system administrators who need HTTP client functionality but want a more user-friendly interface than raw curl without sacrificing features. It's particularly useful for API testing, debugging HTTP requests, and scenarios where both ease of use and advanced curl capabilities are required.
# via Homebrew
brew install curlie
# via Go
go install github.com/rs/curlie@latest
# via Scoop
scoop install curlie

