I stopped using Postman when it magically started connecting to a central server for… nothing useful, really. I have no idea why people would design software this way, especially a development tool that should work with any web server, under any network condition (including fully offline against localhost). Now I just have a Makefile with a bunch of curl invocations, or Python tests with requests to match against exp…
We went with a mix of curl, Invoke-WebRequest, favourite scripting language, HTTP files, IDE tooling, Insomina, after Postman went cloud online and became a forbidden tool on our systems. Also I am not counting that Insomina won't follow the same footsteps as Postman.
Postman which I thought worked locally on my computer, is down
281–290 of 300 posts
Re: Postman which I thought worked locally on my computer, is down
#282Earlier quoted context omitted.
We went with a mix of curl, Invoke-WebRequest, favourite scripting language, HTTP files, IDE tooling, Insomina, after Postman went cloud online and became a forbidden tool on our systems. Also I am not counting that Insomina won't follow the same footsteps as Postman.
Allow me to introduce you to Hurl: https://hurl.dev/
Re: Postman which I thought worked locally on my computer, is down
#283I stopped using Postman when it magically started connecting to a central server for… nothing useful, really. I have no idea why people would design software this way, especially a development tool that should work with any web server, under any network condition (including fully offline against localhost). Now I just have a Makefile with a bunch of curl invocations, or Python tests with requests to match against exp…
What about Bruno[1]? 1: https://www.usebruno.com/
Re: Postman which I thought worked locally on my computer, is down
#284This could have been a 10 Megabyte TUI app in your terminal tab. Boggles my mind how even this kind of app manages to bring in Electron and the cloud. Edit: Ah, so here it is: https://posting.sh
Re: Postman which I thought worked locally on my computer, is down
#285Earlier quoted context omitted.
That's a really great concept and I could see how one could get used to the workflow with this! But, why such low stats on github?! I guess everyone is jamming on postman, eh?
If you take a peek at the commit history [1], you'll see that the project started only last week with some very vague commit messages. The code is also quite messy and unoptimized. It's a cool project but not exactly industry-level software. [1] https://github.com/jamierpond/yapi
Re: Postman which I thought worked locally on my computer, is down
#286This is exactly why I made Yaak [1]. It's fully offline, no telemetry, open source, and can even sync with Git. https://yaak.app
Hey Greg! Can you clarify that building from source and using in a commerical environment is permissable under the MIT license? I have built from source and yet the program is under "trial mode" currently and looks to have a 30 day ticker of doom. Is this a bug? Is there a flag missing? I cannot find any detailed instructions on setting flags or environment variables to turn this off. Thanks!
And yes, you can indeed run the OSS yourself for commercial purposes.
Re: Postman which I thought worked locally on my computer, is down
#287Earlier quoted context omitted.
Hey Greg! Can you clarify that building from source and using in a commerical environment is permissable under the MIT license? I have built from source and yet the program is under "trial mode" currently and looks to have a 30 day ticker of doom. Is this a bug? Is there a flag missing? I cannot find any detailed instructions on setting flags or environment variables to turn this off. Thanks!
How are you running it? The code for the license management and badge are not included by default when running "npm start" or "npm run app-build". And yes, you can indeed run the OSS yourself for commercial purposes.
Re: Postman which I thought worked locally on my computer, is down
#288I stopped using Postman when it magically started connecting to a central server for… nothing useful, really. I have no idea why people would design software this way, especially a development tool that should work with any web server, under any network condition (including fully offline against localhost). Now I just have a Makefile with a bunch of curl invocations, or Python tests with requests to match against exp…
What about Bruno[1]? 1: https://www.usebruno.com/
Re: Postman which I thought worked locally on my computer, is down
#289I stopped using Postman when it magically started connecting to a central server for… nothing useful, really. I have no idea why people would design software this way, especially a development tool that should work with any web server, under any network condition (including fully offline against localhost). Now I just have a Makefile with a bunch of curl invocations, or Python tests with requests to match against exp…
What about Bruno[1]? 1: https://www.usebruno.com/
But the UX is just terrible (for me) or at least has been every time I've tried to start using it more.
I mean, come on, the most basic use of creating a request goes like this:
1. Sorry, can't let you create a request before you create a collection.
2. Sorry, can't let you create a collection before you make a decision on in which path you will be storing all your collections.
3. Sorry, can't let you create a request before you think of a good name for it.
etc.
Like what the heck? This should be just one click to create a new untitled request then fill in the URL and send.
At first I thought this might be growing pains since it was new but every year I try it and it hasn't improved.
Re: Postman which I thought worked locally on my computer, is down
#290That being said, it would be awesome to have something inside Yaak where I could test API endpoints, like integration tests for APIs.