Our current testing utilities are relatively small and compile with modest amounts of RAM. Hobbit's netcat, WR Stevens' sock, etc. We have security auditing rules that require us to compile the programs we run from source. We prefer small programs as they are easier to audit. Does anyone know how much RAM is required to compile Chromium? Can it be done on a laptop?
Postman: a powerful HTTP client (for Chrome) to test web services
91–100 of 145 posts
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#92Re: Postman: a powerful HTTP client (for Chrome) to test web services
#93Earlier quoted context omitted.
Also a Mac app when the original app works across platforms
I would say an app for chrome is just as accessible as an app for mac.
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#94Earlier quoted context omitted.
There are lots of things that you can do easily with postman but would be difficult with a CLI tool.
I doubt that completely, citation needed.
Taking that into consideration, Postman's web interface lets you
- See all the request history that you can easily reply any of them with one click
- Save requests and share them (including a collection of requests)
- Have and share environment variables to change, for example, between production and development API urls, password, params, etc (I know, a CLI also lets you do that, but it soooo simple to just select and preview the environment variables from the list)
- easily handle oAuth and other authentication forms out of the box
But you will suffer (a lot) trying to use Postman to - Handle binary input/outputs
- Stream responses
- Handle cookies
So, depending on what your day to day problems are you should use a different tool... Oh, and I didn't know about HTTPie, thanks for sharing :)
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#95Earlier quoted context omitted.
There are lots of things that you can do easily with postman but would be difficult with a CLI tool.
I doubt that completely, citation needed.
There's still a wide market for GUI based programs, and Postman is an excellent extension that I've used for years (even though I'm a CLI guy myself). It's always there, easy to use, and powerful to boot.
Edit 1: Grammar / Spelling
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#96I use Rested, it's a simple, cheap, mac app and works great. http://www.helloresolven.com/portfolio/rested/ EDIT: Why the hell was I downvoted for suggesting a good app? goddammit...
(I think your comment was fine - it serves a similar purpose so if people are interested in this thread there is a good chance [like me] they might be interested in this too.)
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#97Earlier quoted context omitted.
I doubt that completely, citation needed.
I find your response to be really arrogant. Postman is an easily installed Chrome extension that can be supplied to everyone on your team, regardless of skill level. Requiring a cli isn't as easy as a one click install - there's dependencies (Python etc.) that are required which, while easy for many, aren't as simple for a lot of web developers - especially those who focus on front end development and may just need a…
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#98Thanks for the great comments everyone. Postman developer here. Woke up to find the link at the top of HN. Feels awesome. :)
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#99Earlier quoted context omitted.
I doubt that completely, citation needed.
I find your response to be really arrogant. Postman is an easily installed Chrome extension that can be supplied to everyone on your team, regardless of skill level. Requiring a cli isn't as easy as a one click install - there's dependencies (Python etc.) that are required which, while easy for many, aren't as simple for a lot of web developers - especially those who focus on front end development and may just need a…
Re: Postman: a powerful HTTP client (for Chrome) to test web services
#100I prefer cli tools for api driving/testing, and httpie[1] works pretty well for that. [1]: https://github.com/jkbr/httpie
I like httpie but the app can do a lot more than sending requests now (which you might not be able to do in a CLI tool). You can write tests and run a bunch of requests together to simulate different scenarios: http://www.getpostman.com/docs/jetpacks_writing_tests .