# README
HTTPie for curl
If you like the interface of HTTPie but miss the features of curl, curl-httpie is what you are searching for. Curl-httpie is a drop-in replacement for httpie
that use curl
to perform operations. All curl
options exposed with most syntax sugar and output formatting provided by httpie
.
Install
Using homebrew:
brew install rs/tap/curl-httpie
Usage
Hello World:
$ http httpie.org
Synopsis:
$ http [curl options] [METHOD] URL [ITEM [ITEM]]
See HTTPie doc for more examples.
Differences with httpie
- Like
curl
but unlikehttpie
, headers are written onstderr
instead ofstdout
. - Output is not buffered, all the formatting is done on the fly so you can easily debug streamed data.
- User the
--curl
option to print executed curl command.