Live data from Hacker News

Tell HN: Postman update removes all your stuff if you refuse to create account

news.ycombinator.com

101–110 of 181 posts

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#101

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!

Thanks for the kind words!

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#102
post #60

Am 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

I’m not a curl pro but devtools ‘copy as curl’ gets me 95% there most of the time.

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

#103
post #100

I 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

I checked out of postman for a few years. Color me confused in this thread until I figured that part out.

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#105

Highly 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.

Yes! Postman is git-hostile i.e developer unfriendly.

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#106
post #3

So 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 updated to v8 and missed the one small text link to export your data before creating an account, then all of your data was gone. Fortunately you could go to Github and download an old version.

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

#107
post #60

Am I crazy for using curl and editing the shell cmdline with vim when I need to work with lots of headers?

No, I use curl similarly and a lot. Where I find Postman convenient is when using it against services that use OAuth2. You authenticate once, it fetches the token and you are good to go. Could I script this with curl? Sure. Do I want to? Nah.

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#108
post #3

So 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.

[deleted]

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#109
post #27

There 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":…

Anybody know of one for sublime?

Re: Tell HN: Postman update removes all your stuff if you refuse to create account

#110

Earlier 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.

You don’t have to fight tools if you learn them, but I understand— as a fellow programmer— that you don’t always have time to learn them. However, it’s pretty easy to use pipes and tools like jq to do complex stuff.
Post reply on HN