What alternative to ‘postman’ do you like the most for simply testing a bunch of REST services?
deleted by creator
SoapUI open source version works pretty well and does not require a logon to save your projects
Insomnia.rest generally is my tool: https://github.com/Kong/insomnia
Thunder Client if you like to keep all the relevant requests n data inside the project directory, probably good for teams: https://open-vsx.org/extension/rangav/vscode-thunder-client
With VS-Codium (vscode with the microsoft telemetry scraped out): https://vscodium.com/
https://hurl.dev is pretty sweet.
This looks very good. Thanks for sharing.
I’ll use REST Client in visual studio code when working on Azure functions etc
I use Thunder client in VSC.
I don’t really use any tool. For my stuff I use FastAPI which generates swagger UI, and when troubleshooting I interact that way.
Curl. Especially as Firefox’ network tab lets me copy every request in curl format. I only use postman for complex POST/PUT/PATCH requests. I’ve used httpie in the past.
Curl
Same. Just curl. Good enough.
Heard about hoppscotch, that can be used with proxyscotch
We’re been looking at hoppscotch mainly for the ability to collaborate and store everything on site.
rest.nvim with neovim
Little Faraday scripts
FF devtools
Curl. Or if I need to chain stuff together for auth reasons or whatever, sometimes ill just pop into a python virtualenv and use
requests
Thunderclient for vscodium