As one of the creators, I can recommmend https://kreya.app . It is not open source (like Postman), but has a strong focus on privacy and also stores the data locally. As it has more powerful features (IMO) than most alternatives listed here, I am a little disappointed that it isn't mentioned more often.
Kreya is the only alternative I've used that prioritizes gRPC support (along with REST). Regardless of source availability, thank you for creating this!
Tell HN: Postman update removes all your stuff if you refuse to create account
101–110 of 181 posts
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#102Am I crazy for using curl and editing the shell cmdline with vim when I need to work with lots of headers?
No, but unless portability is a concern or you're massively familiar with curl, you might want to consider xh. It's much more intuitive. https://github.com/ducaale/xh
That said, thanks! Didn’t know about this. Definitely adding to the toolbox.
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#103I would really like to see Chrome offering an alternative to Postman. For me, it feels natural, to have everything in one place. What do others think?
its funny because postman started out as a chrome extension
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#104Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#105Highly recommend the HTTP client in the JetBrains IDEs. I looked carefully at the standalones in this category and IMHO it’s the best. Text based so you can seamlessly manage everything with your repo, with automatic features built in from parsing the text.
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#106So they quickly followed what their competitor Insomnia did recently https://news.ycombinator.com/item?id=37680126 Related "Ask HN: Alternatives to Insomnia?" https://news.ycombinator.com/item?id=37691914 and https://news.ycombinator.com/item?id=37725326
Insomnia doesn’t wipe out your stuff if you don’t create an account though.
If you created an account all of the data was still there. By default the "scratchpad" that did not require an account would not show anything.
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#107Am I crazy for using curl and editing the shell cmdline with vim when I need to work with lots of headers?
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#108So they quickly followed what their competitor Insomnia did recently https://news.ycombinator.com/item?id=37680126 Related "Ask HN: Alternatives to Insomnia?" https://news.ycombinator.com/item?id=37691914 and https://news.ycombinator.com/item?id=37725326
Insomnia doesn’t wipe out your stuff if you don’t create an account though.
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#109There are some extensions for VSCode that let you define your requests in a text file and has ways to run the file and show the data. Here's one I just found: https://marketplace.visualstudio.com/items?itemName=humao.re... Syntax looks like: GET https://example.com/comments/1 HTTP/1.1 ### GET https://example.com/topics/1 HTTP/1.1 ### POST https://example.com/comments HTTP/1.1 content-type: application/json { "name":…
Re: Tell HN: Postman update removes all your stuff if you refuse to create account
#110Earlier quoted context omitted.
Depends how comfortable you are with curl and your workflow. I'm much more productive using curl vs any GUI you give me. Still have OpenAPI specs in my projects but curl is much faster initially.
It falls apart instantly when you need to pass data from one endpoint to another or add any sort of logic like filtering through data - so any time you have non-trivial workloads where you don't want to spend half your time fighting against jq or shell.