Who the fuck is using postman anymore anyway?
Web Development
Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development
What is web development?
Web development is the process of creating websites or web applications
Rules/Guidelines
- Follow the programming.dev site rules
- Keep content related to web development
- If what you're posting relates to one of the related communities, crosspost it into there to help them grow
- If youre posting an article older than two years put the year it was made in brackets after the title
Related Communities
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
- [email protected]
Wormhole
Some webdev blogs
Not sure what to post in here? Want some web development related things to read?
Heres a couple blogs that have web development related content
- https://frontendfoc.us/ - [RSS]
- https://wesbos.com/blog
- https://davidwalsh.name/ - [RSS]
- https://www.nngroup.com/articles/
- https://sia.codes/posts/ - [RSS]
- https://www.smashingmagazine.com/ - [RSS]
- https://www.bennadel.com/ - [RSS]
- https://web.dev/ - [RSS]
What alternative do you recommend? Last I checked, the alternatives weren’t so great.
Check hurl out. Unlike bruno or Postman, it is free and blazingly fast. Define your requests in plain text format and commit them to your version control.
It also allows you to export your plain text hurl files as curl commands.
If you are already using JetBrains IDEs, a lot of them have a built-in http client that isn’t too bad.
insomnia
Yeah I recall that not working so well.
Isn't Insomnia pulling the same shit as Postman nowadays?
There was a soft fork Insomnium but that's been unmaintained for a long while, so I just use Bruno
Was using Bruno and RapidAPI (fka MacPaw) locally, but they couldn't do conditional sequences properly. Switched to Postman, which could, despite knowing they kept everything on the cloud.
Guess I'm switching back 🤦🏻♂️
I left postman behind after the forced cloud integration, but admittedly, it is difficult to find something as simple and richly featured to replace it.
I ended up using a vs code extension called Thunder Client.
Unfortunately, I do, for one client for work as a requirement.
Its for their own tool though, so its their problem.
I ditched it in favor of simple Python scripts, which is fine for my needs. Others at work seem to like it though.
My company banned the use of postman for a few years now.
If it requires a login, you can be sure it is scraping everything it can.
Not from a third party, but I did have to adapt a lot of collections to use on Insomnia. It does allow importing from the postman v3 collection format, but it's a bit hit or miss on wether it works 100%. I had a few problems with sequential requests, but they were easy enough to fix in my case.
If it's just for testing, I'd try that. If they require Postman it for validation purposes, then there really isn't much you can do.
This article contradicts itself. It says “all secrets” and then says headers are not logged to Postman.
Http scripts get you 50% there which, with a dab of code on top gives me pretty much of what i need.