History goes in circles. New API client appears, adds features, userbase grows. Forced login is added, users are angry and look for alternative. New API client appears...
Bruno: Fast and Git-friendly open-source API client (Postman alternative)
281–290 of 444 posts
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#282Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#283Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#284This should've become the standard by now.
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#285Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#286Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#287Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#288Good to see some more open source competition in this space. SoapUI had most of those features some 15 years ago. I never understood why Postman became so popular, my current team even throws money at them.
SoapUI is great.
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#289Earlier quoted context omitted.
"I like the idea of the C filter, but in the end you're just piping the data to the program, why add the middle step?" Only for the flexibility to use more programs. Otherwise every program I use to process HTTP responses needs to be able to accomodate chunked transfer encoding. Plus only a minority of sites send chunked responses. Instead, have one program that does one thing: remove chunked transfer encoding. IIUC,…
Ah I see, I'm working a bit further up the stack from you so the JS runtime handles making the transfer encoding of the response more or less irrelevant, for any response with any encoding you can access `response.text()` and get the entire contents when they're ready, or do something like `for await (const chunk of response.body) { ... }` to work with the pieces as they roll in. > IIUC, what you want is uniform chun…
Best of luck. Hope you can find the right program for viewing HTTP.
Re: Bruno: Fast and Git-friendly open-source API client (Postman alternative)
#290Can someone explain what Postman or Bruno is for? I know it's something for interacting with apis but why would i use it. I interact with apis a lot with curl or wrapper in my languages but never really needed something else?