Show HN: Restfox – Open source lightweight alternative to Postman
81–90 of 209 posts
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#82My 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.
The market is overcrowded by good solutions, best wishes to other tools!
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#83Re: Show HN: Restfox – Open source lightweight alternative to Postman
#84I 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
#85If you are a minimalist, and are using VS Code, try https://marketplace.visualstudio.com/items?itemName=humao.re... which is a pure text syntax to describe API requests, and execute them right from the editor window. I now have api.http text file in every API-first project I am building and I love it.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#86Re: Show HN: Restfox – Open source lightweight alternative to Postman
#87Earlier quoted context omitted.
Same here, moved from postman to insomnia, now mostly using the rest plugin for visual studio code. Prefer using regular text files.
I similarly use restclient.el on Emacs and love it. 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.
Re: Show HN: Restfox – Open source lightweight alternative to Postman
#88Re: Show HN: Restfox – Open source lightweight alternative to Postman
#89Re: Show HN: Restfox – Open source lightweight alternative to Postman
#90I would recommend VS Code with RestClient extension.
Nice to have a file with some calls to make right in the client. Can take those to an outside app if needed.