Then came Insomnia, I use it today, but it seems that it's becoming the new Postman, trying to do a lot of things and becoming slower every day.
I'm sticking to cURL, bash and jq as much as I can, but sometimes I need to see a catalog of endpoints, see a more structured list, then I have to resort to Insomnia.
Do you feel the same? What is your workflow?
VS Code proves that a developer tool with nice UI, lots of features, and workable performance is possible. What's yet to be seen is if it can be done to the same degree by a team without the resources of Microsoft or Slack.
I'd love to see Insomnia implemented as a PWA. I would bet there's some technical challenges involved there, but PWAs have the advantage of re-using the browser instance I already have running to do my work and read HN.
If I need to manually hit endpoints for some reason, I usually just put the curl calls into some text or note file and copy-paste into a terminal.
If I need deeper debugging, I use tcpdump and wireshark. In this case I can either try to capture live traffic or hit the endpoints with curl.
For things that involves flows or logic I tend to write code, Python in my case but everything works, with some basic test framework around it. You can even use Robot framework or Karate if you don't want to write real code