Be careful with Postman. It seems they upload all your secrets to their servers. We stopped to use it a time ago. I don't know if they changed in this regard.
Show HN: Restfox – Open source lightweight alternative to Postman
51–60 of 209 posts
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#52I switched to insomnia when postman changed their pricing pulling the rug out from everyone wanting us to pay like $300 more per month. (Before they back tracked) https://insomnia.rest/ I actually prefer it.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#53Re: Show HN: Restfox – Open source lightweight alternative to Postman
#54My favorite testing HTTP Client is still just the IntelliJ built-in, pure text. You know exactly what you send without having to navigate menus and whatnot. In the end, 99% of HTTP requests are just that, text.
This is what I wish all http clients could adopt. Use plain text files (IntelliJ already introduced .http files, which work great) Sadly it will never work because that would break 90% of the incentives to pay, which his having a sync system. Because then I could simply commit my http requests and git would be my sync server. Personally I don't like the IntelliJ Client, the UI is kind of ugly and requires a lot of ac…
Early days but would love some feedback if you get a chance to try it out.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#55Otherwise great work! needs a little disclaimer though that you will not save any of my requests =)
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#56My favorite testing HTTP Client is still just the IntelliJ built-in, pure text. You know exactly what you send without having to navigate menus and whatnot. In the end, 99% of HTTP requests are just that, text.
Can you chain requests together? Like if a request requires auth it will invoke login then take the token for use in the next request.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#57Re: Show HN: Restfox – Open source lightweight alternative to Postman
#58Re: Show HN: Restfox – Open source lightweight alternative to Postman
#59My favorite testing HTTP Client is still just the IntelliJ built-in, pure text. You know exactly what you send without having to navigate menus and whatnot. In the end, 99% of HTTP requests are just that, text.
I’ve a very early prototype. If you get a chance to try it out, please do and share your feedback.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#60I switched to insomnia when postman changed their pricing pulling the rug out from everyone wanting us to pay like $300 more per month. (Before they back tracked) https://insomnia.rest/ I actually prefer it.
Same here, moved from postman to insomnia, now mostly using the rest plugin for visual studio code. Prefer using regular text files.
For those unfamiliar with these plugins, they allow you to simply write text files looking like:
GET https://example.com/posts/5
Accept: application/json
or POST https://example.com/posts
Content-Type: application/json
Authorization: Bearer abc
{"title": "foo", "body": "bar"}
and simply execute the requests from the buffer.