top | item 45645172

Postman which I thought worked locally on my computer, is down

537 points| helloguillecl | 4 months ago |status.postman.com

293 comments

order

rcarmo|4 months ago

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 expected responses.

pjmlp|4 months ago

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.

coldtea|4 months ago

>Now I just have a Makefile with a bunch of curl invocations

There are several FOSS command line tools that can do this easier, e.g. https://httpie.io/cli

ozim|4 months ago

People that want to make money on their software obviously.

Connecting to a license server is pretty much standard.

For Postman it is annoying because it was never explicitly stated and it seemed like they are cool kids making nice helpful app. But really they are in for money. Which is not bad have to say but the way they did it is bad.

groone|4 months ago

I switched to k6 the cli load test tool for its full js/ts scripting ability

mattmanser|4 months ago

Pretty obvious why if you use the software.

I get the whining, but teams need ways to share their complex workflows, and teams are where the money is for all dev focused software.

That's who pays for all your tools to have free versions.

People who use make and curl to jury rig some unshareable solution together that no-one else in their company would even bother trying to use aren't worth any money to companies.

jug|4 months ago

This 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

blahgeek|4 months ago

> could have been a 10 Megabyte TUI app

Wow, in a world dominated by gigabytes of electron application, people thinks 10 MB is the optimal size for a simple utility TUI app.

As a reference, (from archlinux repo), vim’s install package is 2.3MB, curl is 1.2MB, lua (the complete language interpreter) is 362KB

dayson|4 months ago

Wow, I've been looking for a postman/Bruno/foo replacement that I could use inside a remote ssh server or remote dev containers in vs code. This might be it!

Mashimo|4 months ago

> even this kind of app manages to bring in Electron

Probably because it began as an chrome addon before it was "standalone".

troyvit|4 months ago

Oooh this is neat! I've been using hurl (https://hurl.dev/) for the last few years and while it's fun, I've ended up with a ton of text files floating around a folder instead of any kind of organization. Might have to try this.

chrysoprace|4 months ago

Posting has been the most lucrative option for me so far, but it'll take me some time to get used to the keybindings.

coldtea|4 months ago

Because enteprise type devs love this shit

kiselitza|4 months ago

Ah, yes, the cloud-dependent tool that forces you to pay per seat and log in for any type of collaboration is down when their cloud provider is.

Anyways, the folks have spoken, no need to double down. There are more than a dozen alternatives to it, and new ones are coming up.

I'm helping build a new one.

- Completely offline.

- Gives the ability to build reusable blocks (headers, query params, etc)

- Let's you document everything in Markdown.

- Imports your collections and cURLs.

https://voiden.md/

drcongo|4 months ago

A little bit of feedback, I could barely read any of the text in the interface as the contrast is almost zero and the font is unbelievably small. So I tried Cmd+ to zoom the interface, but nothing happened, so I tried Cmd, to open the settings to see if there was a zoom level or contrast setting, nothing happened. I like the idea of it, but it's totally unusable.

chuckadams|4 months ago

Voiden looks really promising, so I installed it to get started, and here's my hot takes so far before even using it.

* The text is tiny for my old eyes. I figured there's probably a setting for it and hit Cmd-, and found there's no settings UI whatsoever. No keyboard shortcut either it seems, and no help menu either, so no searching for "keyboard" with Shift-Cmd-/

* .void files may be markdown, but no markdown editor will recognize it as such. Maybe support .void.md as well. I also couldn't find any way to edit the markdown source of a .void file from voiden, which is a bit ironic for a tool that loudly advertises the markdown format as a central feature.

* Could there be a block that expands into the full URL of the request and parameters above it (or perhaps as args)? How about another that renders as a cURL command, which would cover POST/PUT/PATCH requests nicely too. My API documentation always has cURL request examples and I detest writing them by hand.

* While I'm suggesting blocks, one that renders the response headers/body to the preceding request would also be handy. It should support a placeholder response that gets replaced when the request is actually run (and perhaps a "save" button to persist it in the markdown). Responses get long, so maybe have a max-height for the block and make it scrollable

I'm actually really excited about Voiden and hope these can be addressed. It has a similar feel to Jetbrains' .http format, but an evolutionary leap beyond it. It also feels really raw and unfinished.

S04dKHzrKT|4 months ago

Depending on your usage, you may not need a separate app. Jetbrains[0], Visual Studio[1] and VSCode[2] have support for http files.

[0]: https://www.jetbrains.com/help/idea/http-client-in-product-c...

[1]: https://learn.microsoft.com/en-us/aspnet/core/test/http-file...

[2]: https://marketplace.visualstudio.com/items?itemName=humao.re...

zaphirplane|4 months ago

The vscore one is a plugin from some random person, to be called built in

jiehong|4 months ago

Last time I checked, they don’t support the exact same format in each product.

Thus, we stick with hurl.

QA seems to stick to robot framework instead. Some use Bruno.

theshrike79|4 months ago

TIL about .http files. Thank you :)

Converted a bunch stuff just laying in my shell history into actual actionable files finally :D

nsxwolf|4 months ago

A lot of organizations have very large suites of postman collections that serve as API documentation, regression and QA testing… they often heavily rely on the postman Javascript libraries and have custom code embedded directly in the collection.

whatevaa|4 months ago

In our case, some non-devs use http apis too, notably QA. Bruno currently fills that role.

xp84|4 months ago

RubyMine, and I assume its cousin JetBrains IDEs, has a great HTTP client (Tools -> HTTP Client) that I've used when I need this sort of functionality. I've been off of Postman for quite some time, since it got so complicated, and all I wanted was something to help me make simple web requests. (No disrespect intended to those who like Postman, it's just too overwhelming for my needs.)

selcuka|4 months ago

> RubyMine, and I assume its cousin JetBrains IDEs, has a great HTTP client

It's great. You can even paste a curl command into it and it will automatically convert and format it. You can then use the Copy button to convert your changes back to curl.

duxup|4 months ago

I think for the most part everyone has accepted that Postman grew into a monster that bloated with features and presumably that comes with online dependence.

will4274|4 months ago

$dayjob sent an email to everyone with postman installed and asked us to uninstall when postman switched to online. $dayjob IT still maintains a wiki page and includes it on the banned software list. Used to be ubiquitous over there.

Pet_Ant|4 months ago

If you give a man a fish he eats for a day, but if you teach a man to fish you give up your monopoly on fisheries.

It used to considered vile that drug dealers tried to hook their users and force dependence... turns out that they were just ahead of the curve.

ozim|4 months ago

Everyone accepted because it slowly became standard tool. I have business guys using postman and sharing collections is kind of must.

I hate it, for myself I don’t use it but when having to share API stuff I have to use it because that’s what other people understand.

Good for postman business, bad for everyone.

gschier|4 months ago

This is exactly why I made Yaak [1]. It's fully offline, no telemetry, open source, and can even sync with Git.

https://yaak.app

EspadaV9|4 months ago

Been using Yaak for 6-9 months now, initially built from source, but now a paying subscriber. Recently saw that you post open metrics[1] on subscriber count and revenue, and love getting a little look behind the curtains.

[1]: https://yaak.app/open

rmnclmnt|4 months ago

Curious to know more about the commercial licensing scheme for Yaak: if i’ve read correctly, purchasing a pro license if based on « good faith » as the features are exactly the same as the MIT licensed Hobby version?

Sincere question, been studying lots of OSS commercial licensing and always wonder what works in which context

725686|4 months ago

So you sold insomnia, sold it, and then created another competing tool? There where no restrictions in the deal?

jmarchello|4 months ago

I fell in love with Insomnia pre-acquisition so I'm thrilled to see it has a spiritual successor. Good on you Greg.

EmanuelB|4 months ago

Currently using Bruno. Saw your comparison. If Bruno has everything I need, what would you say is your biggest benefit compared to Bruno?

NoMoreNicksLeft|4 months ago

This looks great. If you can wait 8 years before you sell out, that should be long enough for me to retire. Give me a headsup if they offer you a billion earlier so I can start looking for Yaak's replacement.

dcdc123|4 months ago

You should consider updating your free license to allow some time period of professional use, otherwise it's not possible to evaluate it at work without violating the license.

mastax|4 months ago

That Hotdog theme is stunning but I'm not sure if I mean "it's beautiful" or "it makes my head hurt."

dayson|4 months ago

I was looking at Yaak, and wondering if you've plans to bring it inside VS Code some day?

how would someone use this in a project that operates within VS Code Remote where the source sits on a remote server and isn't physically on the file system.

ibejoeb|4 months ago

off topic, sorry: Looking at the docs and I don't find a quick answer. I really want an API client that will do OAuth and handle token refresh, and I haven't found one. The use case is that (obviously) I control the redirect URI, so I'd like to map it back to client (some kind of proxy that I run and make external with all of the requisite DNS and TLS) or maybe via a hosted service (which I'm willing to accept for the convenience.)

I haven't used postman or insomnia in a while since they went to the cloud, so I could just be missing it, but that's also a non-starter for me.

bstsb|4 months ago

was going to say "what makes this better than Insomnia" before i saw this!

> Having created and sold Insomnia in 2019

coffee|4 months ago

Hey @gschier this is awesome. I've been a long time user of Insomnia and since the acquisition it's ever so slowly, well... it's been a challenge for me.

I didn't know you created Yaak!

I just downloaded Yaak and it's been awesome, thank you!

I downloaded this through AUR on Arch and one bit of feedback is that I wish you'd make the sig verification a whole bunch easier, thanks!

alberth|4 months ago

Very cool.

Can you provide clarity on is a commercial license is needed. The license appears to be MIT but the yaak.app website gives the impression a license is required, even stating as such in FAQ.

12345hn6789|4 months ago

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!

vishnukvmd|4 months ago

Hey, happy user of Yaak here, thanks for building this. Wish you success and peace.

imcritic|4 months ago

Just noticed that with my star on GitHub it now has over 9000 stars!

sbrother|4 months ago

Hey thanks, this looks great. I'm still on Paw but I've been looking for something new since it's been languishing as "RapidAPI" for years.

mrasong|4 months ago

First time hearing about this app, sounds like it totally fits my use case. Gotta give it a try!

scambier|4 months ago

Quick request, if it's doable: would you mind making a portable version of this? We're super locked down on our machines (even as developers), and all programs that need to be installed need to be approved. Portable programs fly under the radar, so they're easier to try discreetly, then we can make an official request to get them approved or buy a license.

Edit: oh my, you also made Insomnia, that I used when Postman was on the enshittification path...

baobabKoodaa|4 months ago

This looks awesome! I've been wondering what to do with Insomnia since its enshittification.

One idea: since you are doing good-faith licenses anyway, maybe you could add in the possibility to pay for some kind of one-time license? I don't particularly need or want updates from my API tool, I just want it to work and not break. I would be fine with paying a one time commercial license that gives non expiring right to use a particular version.

cjonas|4 months ago

One thing I despise about postman is how much friction there is to creating a new request. In my line of work, I'm often using an API client as a scratch pad to validate /poc. At the same time, it would be nice to just have a simple "history" that I could go back and search if I needed to find some request I made a few weeks ago.

barbazoo|4 months ago

Thanks for making this. May this stay un-enshittified by VC money for a very long time.

johnhenry|4 months ago

Hey Greg!

7bit|4 months ago

You're already going down the path Postman did. No way I'm using that.

alabhyajindal|4 months ago

Surprised to see no one's mentioned HTTPie yet. I reach out for their web app anytime I have to make a one off network request: https://httpie.io/app

moi2388|4 months ago

Web app. The entire point here is using something local and not web based

paradox460|4 months ago

For a long time I used Paw, which became RapidAPI a couple years ago. Nice little app that does it's job well.

Lately I've just been using a Phoenix LiveBook notebook, with the Req package loaded into it. I can make requests, do arbitrary transforms on the data, and generally stay right at home in a language I like and understand

If you don't know elixir, I'm sure jupyter or some other notebook system would do just as nice of a job

pjio|4 months ago

Question: Do I miss something by not using Postman? My alternatives for development are "Edit and Resend" of a request (in Firefox) and plain old curl scripts for reusable examples.

danparsonson|4 months ago

Not Postman specifically but a client like that will allow you to prepare a whole set of different requests and save them so you can build up a test suite, plus some of them do things like scripting, chaining requests together etc. It's like the difference between a text editor and an IDE, so it depends on your needs really.

piva00|4 months ago

I use a mix of tools, depending on needs: `curl` scripts for things I might need to automate on barebones OS installations (Linux/macOS), HTTPie on my local CLI env if I'm debugging something where I need to mutate parameters quickly: making sequential calls, many requests with varying parameters; and Insomnia as GUI where I can save requests with parameters, headers, etc. to be re-used during development.

Each one has its strengths, and weaknesses, Insomnia can export the saved requests as `curl` commands so it's a nice visualisation to iterate over a complex call until it's working, and then be exported if needed to be automated; `curl` is quite ubiquitous but clunky to remember the exact arguments I might need; HTTPie has a nice argument syntax so it's quite readable to be quickly edited but isn't present without installing Python, pip, and pulling it.

Mashimo|4 months ago

We use it a bit at our company. We have a collection file that includes a ton of requests with headers and body. Developers can with ease load that collection file and run it against their own server, and also quickly change to a different server with just a click.

I guess a substitution would be a git repo with curl scripts and environment variables?

We also have some non-tech people who use postman to run tests.

cvak|4 months ago

I used to use postman, before they become greedy, now I use Bruno.

But to your question - I have saved based authenticated request to our company useful APIs - github/jira/artifactory - so when I want to string together some micro tool to do something in batch, I don't have to remember where do I create API key, and how do they accept it.

pjmlp|4 months ago

The UI/UX, however you can get similar workflows in Insomina (while it doesn't follow Postman's footsteps), and IDE tooling.

voidUpdate|4 months ago

We use it at my work because one team will create the backend, and another team will create the frontend, and its useful to be able to share a big list of all the endpoints, along with how to use them and the expected result that can all be run, as well as handling all the auth for you

XorNot|4 months ago

These days I use jupyter notebooks and requests.

At the end of the day with Postman you wind up trying to codify requests via collections, which tends to just be programming in a more limited language.

ActorNightly|4 months ago

The only nice feature is being able to paste a url, get parsed parameters, and then edit all the things using the UI.

Other then that, its same old curl.

coldtea|4 months ago

No, but you probably miss something for not using HTTPie

jamiepond|4 months ago

I made a very simple lightweight yaml based Postman alternative called `yapi`.

https://github.com/jamierpond/yapi

Run this:

  yapi -c ./users.yapi.yaml
  
With this file:

  # users.yapi.yaml
  # yaml-language-server: $schema=https://pond.audio/yapi/schema
  url: http://localhost:3000
  method: GET
  path: /api/users
  query:
    select[name]: true
    select[tag]: true
    limit: 10
Or just `yapi` to use fzf to find configs.

ray_v|4 months ago

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?

teunlao|4 months ago

Bruno + git has been perfect for our team. Collections in the repo, no external dependencies, works offline. Should have switched years ago.

chamomeal|4 months ago

I had a weird issue when trying to import via pasting curls. I got fixed, and it’s been totally 100% great otherwise

jicea|4 months ago

If you're willing to use a CLI, you can try Hurl [1]. It's is an Open Source cli using libcurl to run and test HTTP requests with plain text. We use libcurl for the reliability, quickness and top features (HTTP/3 IPv6 for instance) and there are features like:

- requests chaining,

- capturing and passing data from a response to another request,

- response tests (JSONPath, XPath, SSL certs, redirects etc...)

There is nice syntax sugar for requesting REST/SOAP/GraphQL APIs but, at the core, it's just libcurl! You can export you files to curl commands for instance. (I'm one of the maintainers)

[1]: https://hurl.dev

clickety_clack|4 months ago

Posting (https://posting.sh/) is a pretty cool alternative I’ve used in the past. There’s no reason I can see why I would use a SaaS product for this.

ch_fr|4 months ago

I highly recommend checking out the postman forum for posts about the scratchpad being removed, it's a fascinating and frustrating read.

It would be so much faster and easier for the postman reps to just shut down the conversation. And yet, for some reason, they keep it going for very long while still being extremely evasive when it comes to any concern raised about data sovereignty.

unkn0wn_root|4 months ago

I don’t personally use Postman, but at work we use .http files, which are easy to version and manage with Git. The downside is that you’re almost entirely tied to VS Code and the REST Client extension. I’m not a big fan of VS Code myself (I use Vim), so if anyone interested, I created resterm [0] - a terminal client that works with .http or .rest files and adds some extra "nice-to-have" features. I’m currently working on adding OpenAPI spec importing.

https://github.com/unkn0wn-root/resterm

klinch|4 months ago

+1 for .http files

Also, TIL that these are not IntelliJ-specific (that’s where I use them)

reddit_clone|4 months ago

We have moved all our stuff to Bruno nowadays.

CaptainOfCoit|4 months ago

I remember when one of the "Core Goals" of Postman was "Complete control over your data - Keep simple JSON based data formats which can be exported and shared as per user needs".

https://web.archive.org/web/20140604204111/http://www.getpos...

suriya-ganesh|4 months ago

not possible once you sign away your allegiance to a VC

colechristensen|4 months ago

One of the things I've thought about for startups are things with the general theme of "complete control over your data", how could I write something like this into the articles of incorporation (or similar) to make some of those values at least somewhat irrevocable?

2muchcoffeeman|4 months ago

When Postman started becoming shit, I started using Insomnia, which is also turning into shit now.

TheRoque|4 months ago

Stopped using postman from about 2018 I think. I think it was because I found it stupid to have to log-in to do API queries.

I didn't even find it that ergonomic to use, to be fair.

AdieuToLogic|4 months ago

This is one of many reasons why I prefer curl[0] and a bit of shell scripting. With this approach there is no dependency on a vendor's servers.

0 - https://curl.se/docs/manpage.html

ivolimmen|4 months ago

Same but since a lot of bigger scenarios I need to test the scripting quickly becomes a lot so I often do this using Groovy (as I am a Java developer this is nearly the same). I now have a collection of scripts I often reuse and adapt.

charlie0|4 months ago

I'm looking at alternatives that are guarantee to work locally and only found the following:

Posting.sh -> Postman imports are experimental which makes it a non-starter for people like myself with large Postman collections. TUI only also makes it harder to switch.

Insomnia -> Owned by another large tech company.

Yaak -> Made by the same guy who created AND SOLD Insomnia above. Not exactly comforting to switch over for. How long till this one also gets sold?

Any other great local tools out there? I would like to be done with Postman.

nicolas_|4 months ago

There’s also Bruno!

« Offline only - We take security and privacy seriously. Bruno is an offline tool and there is no syncing of your data to any cloud »

https://www.usebruno.com/

kermire|4 months ago

Restfox [1] is worth checking out. It's fully offline and lets you version control your collections with git or any sync tool you prefer. The postman import is well tested and the app also allows you to export back to Postman collections.

Disclaimer: I maintain it.

[1] https://github.com/flawiddsouza/Restfox

eYrKEC2|4 months ago

I use a simple bash script:

    #!/bin/bash -x

    TOK="my-jwt-tok"

    case "$1" in
        get-foo)
            curl -H "header: bearer $TOK" "http://www.example.com/foo" | jq .
            ;;

        post-bar)
            curl \
              -H "header: bearer $TOK" "http://www.example.com/bar" \
              -H "content-type: application/json" \
              --data-raw '{"baz":"bap"}'

            ;;  
        *)
            ;;  

    esac
used like:

    ./example.bash get-foo

I know it doesn't have the functionality of postman, but this is how I build up interactions with a new API.

CommonGuy|4 months ago

I'm one of the creators of Kreya [1]. We were one (or the) first to support a fully-offline, git-centric local data storage in this space.

Kreya is privacy-first since its first commit five years ago, since we were fed up with Postman and Insomnia. Happy to answer any questions

[1] https://kreya.app

jonrosner|4 months ago

Self host Yaade. If you dont have a server run it locally in a Docker container.

karunamurti|4 months ago

I just memorized curl like a lunatic.

al_borland|4 months ago

I moved from Postman to RapidAPI when Postman tried to get me to sign up for their cloud service just migrate my data to a new laptop.

CodesInChaos|4 months ago

I migrated to insomnia.rest when postman required logging in for basic functionality.

tedk-42|4 months ago

OK which dumb engineer unsafely wrapped the entire feature flagging / observability / telemetry tooling around the main process of the app such that it wouldn't load unless those libraries resolved?

pjmlp|4 months ago

It isn't working locally for quite some time now, hence why many companies have forbidden using Postman, given the issue of testing internal APIs with security information hosted on Postman servers.

p0w3n3d|4 months ago

The red flag appeared a few years ago already. My company forbade us to use it. This wan no problem for me, because I mostly use curl, but people got upset. We thought this too much restrictive, but ...

SamInTheShell|4 months ago

This makes me feel more justified in using Posting in my terminal these days.

naizarak|4 months ago

I'm using an old version of Postman with their servers blocked through the system hosts file. I keep meaning to migrate to whatever the next best thing is but this setup just works for me.

mondainx|4 months ago

It connects to their servers when it starts up; have to assume their server is down. It used to be so much nicer before they added this "feature".

beefnugs|4 months ago

Don't you love how slimeballs cant help themselves though? Instead of just letting free and easy happen the one time a year they go down... they just spit in everyones face to remind them now they have time to go find an alternative

daytonix|4 months ago

Yeah I was pretty damn mad when I opened postman and it was completely unusable. Can safely say I'm done with it now.

ReptileMan|4 months ago

I am against government regulation, but at times likes this (or your sous vide and washing machine requiring online accounts to function) the idea for regulations that mandate availability of local server for client server applications is alluring. And making all cloud functionality optional.

throw_m239339|4 months ago

Or just use an alternative, and there are plenty of them in that segment, no need for the legislator to do anything here.

mjio|4 months ago

I love Yaak. After using Postman for many years, I appreciate how straightforward it is without being bloated.

That being said, it would be awesome to have something inside Yaak where I could test API endpoints, like integration tests for APIs.

barbazoo|4 months ago

I feel bad for the engineering team that has to implement it all this way. Hang in there folks.

lunias|4 months ago

I used to use Postman years ago; I never will again. These days I just use cURL and sometimes a rest client mode inside of whichever IDE I'm using.

r_singh|4 months ago

Woah didn’t know it was down but I’ve been facing issues for a while so switched to Bruno by someone’s recommendation and it’s pretty tight

fuzztester|4 months ago

Someone should make a better one called Getman.

joking|4 months ago

maybe it doesn't do everything postman does, but I'm very happy using the rest client extension in vs code, the http files with the api calls are commited to the source code repository along with the code is easy to use, does what i need, and is easy to share with my colleagues.

polynomial|4 months ago

But why does the app stop working if telemetry can't be sent? Who engineered this?

kristianp|4 months ago

How many other offline and online things failed unexpectedly due to the aws outage?

1vuio0pswjnm7|4 months ago

Despite the strength of marketing, "DIY" is sometimes more reliable than "pay fees to so-called "tech" company"" and subject oneself to possibility of telemetry, data collection, surveillance and targeted advertising. But every user is different

For recreational internet use, I use yy025 + TCP client + TLS proxy. No fees, no telemetry, no BS. I can select from a long list of TCP clients in this setup, e.g., original netcat, tcploop, tcpclient, socat, etc., as well as a variety of TLS proxies, e.g., tinyproxy+stunnel, haproxy, etc. I can modify the source of all the programs and can do more than is possible if using an "HTTP client", e.g., curl

Of course I am not testing "web apps" for a commercial enterprise. Nor do I use a so-called "modern", graphical browser. I retrieve data without a browser. Since I use HTTP every day in textmode it is "interesting"^1 to see software that somehow commercialises similar HTTP use, e.g., Postman, Burp, etc.

1. For example, https://pitchbook.com/news/articles/postman-valuation-2-bill...

v3ss0n|4 months ago

Bruno is quite good with postman compatibility and it's own syntax

digitalpacman|4 months ago

Postman is absolutely shit since it was sold. Stop using it.

waynesonfire|4 months ago

I switched to Insomnia, seems not as bloated for my use-case.

cynicalsecurity|4 months ago

Isomnium is even better, although it's been archived.

imiric|4 months ago

Just use cURL.

It will never disappear, enshittify, or let you down. It's already modern, and has a great UI. It's available everywhere. It supports every protocol and feature under the sun. Those fancy features you think you need: you don't. Whatever you're missing can be easily added via simple shell scripts or aliases.

heisenbit|4 months ago

> It will never disappear

They started hardening our images and curl went poof.

bni|4 months ago

Stop using Postman and its ilk. Use .http files.

tcper|4 months ago

I will phase out this tool, definely

hoechst|4 months ago

i'm still using postman v9 from 2022, which is pre-bloat and good software.

K0IN|4 months ago

lately I really enjoyed using http files for sharing http example requests

tobinfekkes|4 months ago

Mine used to be all local too, but then it required me to login online in order to work.

But mine is still working locally now. If it stops working locally, what even is the point anymore?

stavros|4 months ago

In the beginning, there was Postman, and we used it, and it was good. Then, Postman became enshittified, so we switched to Insomnia. Then, Insomnia became enshittified, so we switched to Bruno. Then, Bruno became enshittified, so now it's Yaak.

Let's see how long it takes for one of these programs to break the cycle.

rixed|4 months ago

And each of those are just thin wrappers around curl I guess. We should be glad that some good free software could be produced in the past to serve as the foundation for today's greed.

a85|4 months ago

Hello all,

Postman founder here. I did not time this with an AWS outage of this magnitude but I posted about filesystem, git, and offline support coming to Postman last week: https://x.com/a85/status/1978979495836356819?s=46

Postman has a lot of capabilities now that require the cloud but there is still an offline client built in just for requests.

Building sign-in and cloud features were not due to a VC-led conspiracy. A large number of companies depend on APIs (like AWS) and have thousands of services and APIs. Customers need to manage them and wanted us to build it.

chasing0entropy|4 months ago

Umm, just wondering why you never unplugged it from the internet for a few days(or forever)?

puppycodes|4 months ago

Yeah they really turned their product into over-complicated garbage instead of focusing on doing one thing well.

chamomeal|4 months ago

It’s annoying that the marketing and brand recognition has worked so well. My whole company uses postman and it’s a huge uphill battle to use anything else.

There are SO many alternatives. It’s curl UI wrapper with secrets* management! Why do we all need enterprise licenses??

*and the secrets were all exposed in logs!!

fuzztester|4 months ago

That is true of many software companies these days.

an0malous|4 months ago

Enshittification, happens to every venture or private equity backed business

o1o1o1|4 months ago

Off-Topic: I read about yaak app as an alternative to Postman - can anyone recommend an alternative to Stoplight Studio for covering "the other side" by any means?

I loved to use their free desktop app for building API documentations which can be used for scaffolding / generating APIs but for some reason I don't remember right now I had to stop using it.