What alternatives can you recommend?
That said, I’ve found Postman extension for VSCode to be preferable to their GUI
- Easy to find things in your shell history with fzf
- curl supports everything you may need HTTP-wise.
One of my favourite curl snippets:
curl -vvv 'https://google.com' \
-w "==============\n\n | dnslookup: %{time_namelookup}\n | connect: %{time_connect}\n | appconnect: %{time_appconnect}\n | pretransfer: %{time_pretransfer}\n | starttransfer: %{time_starttransfer}\n | total: %{time_tot
al}\n | size: %{size_download}\n | HTTPCode=%{http_code}\n\n"
which results in this little table after all the actual HTTP output: | dnslookup: 0.033616
| connect: 0.234668
| appconnect: 0.512112
| pretransfer: 0.277686
| starttransfer: 0.307353
| total: 0.308548
| size: 220
I kid, but only a little bit. What does Postman offer?
check https://www.google.com/search?q=alternatives+to+postman+site...
[1]: https://httpie.io/
Jetbrains also has a HTTP client built in, but it's not as easy to use.
I switched when Postman was trying to get me to sign up for their cloud in order to migrate to a new laptop.