Live data from Hacker News

Show HN: Restfox – Open source lightweight alternative to Postman

restfox.dev

181–190 of 209 posts

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#181

If you live in Emacs, there is the amazing verb package that does the same, it supports org-mode primarily and also integrates with org-babel nicely. https://github.com/federicotdn/verb

Although I mainly stick with curl or requests due to muscle memory, there's also restclient.el https://github.com/pashky/restclient.el. I imagine having builtin org support is super convenient, thanks for sharing.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#182

> Last time I posted this it didn't garner much interest. Looks good. I use Postman daily and it sucks, so always open to alternatives. I don't recall what it looked like the last time you posted, but I wonder if part of the low interest is because upon arrival it doesn't instantly jump out to the visitor that this is something you can host/run locally. It's very easy to miss the Github links top right. And if you do…

What do you think Insomnia and/or Stoplight?

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#183

> Last time I posted this it didn't garner much interest. Looks good. I use Postman daily and it sucks, so always open to alternatives. I don't recall what it looked like the last time you posted, but I wonder if part of the low interest is because upon arrival it doesn't instantly jump out to the visitor that this is something you can host/run locally. It's very easy to miss the Github links top right. And if you do…

I currently use Postman but havent had problems yet, though next week I'm joining an API crew. Your opinion seems strong; could you tell me where you ran into pitfalls with it I should look out for?

Postman is a classic victim of venture funding. It was a great, simple, useful product, and then they had to become a rapid-growth business.

The app has been buggy since its first major overhaul, and it now also has incredible feature bloat. It's hard to find what you want, and the UI is constantly pushing you to make use of features you don't want to use. It no longer works well as a scratchpad because they want you to organize everything into a full API IDE, which is not something I want or need.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#184

I have been trying out https://hurl.dev and so far been really liking it. Plain text format, everything runs very quickly locally, it can capture data from previous requests to run workflows and serve as a testing tool.

Thanks for mentioning hurl. I just started looking into it and Insomnia (with the cli) as potential replacements for ci testing tools.

hurl looks pretty simple to use, and way easier to get started with than what we're using at work currently.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#187
post #183

Earlier quoted context omitted.

I currently use Postman but havent had problems yet, though next week I'm joining an API crew. Your opinion seems strong; could you tell me where you ran into pitfalls with it I should look out for?

Postman is a classic victim of venture funding. It was a great, simple, useful product, and then they had to become a rapid-growth business. The app has been buggy since its first major overhaul, and it now also has incredible feature bloat. It's hard to find what you want, and the UI is constantly pushing you to make use of features you don't want to use. It no longer works well as a scratchpad because they want you…

Agree with all.

There are also inconsistencies between Postman running in the browser and the desktop app.

I documented a 3rd party API in Postman desktop and the called me all sorts of names because it didn't work. Postman support told them to download the desktop client and then it worked.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#188
post #63

Earlier quoted context omitted.

And the Cookie header isn't sent? (using it on Firefox 106.1).

I'm using the fetch API for making requests and fetch sadly forbids the Cookie header from getting passed. Will be looking into how I can bypass this.

~~I think axios can. Its API is similar to fetch, except for the return status. You could also manipulate the cookies before and after transmission, but that might be messy when you hit the browser's cookie limits.~~

Scratch that. I wasn't thinking clearly. I ran the call from restfox.dev, and it's another domain, of course. You'd need to write your own http client to get around it.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#189
I have moved from postman to https://github.com/aquach/vim-http-client and have never looked back ever since, its opens in vim and has variables to store values and can store comments too in a .txt file along with the http calls. Give this a try if you are using vim.

Re: Show HN: Restfox – Open source lightweight alternative to Postman

#190

If you live in Emacs, there is the amazing verb package that does the same, it supports org-mode primarily and also integrates with org-babel nicely. https://github.com/federicotdn/verb

For Visual Studio Code there is a similar plugin called REST Client https://marketplace.visualstudio.com/items?itemName=humao.re...
Post reply on HN