According to the official documentation httpie tool also works on Windows 10, however when I run the command in terminal it simply hangs and nothing happens:
$ http :8000/
Is there an explanation what is going on and preferably a workaround?
According to the official documentation httpie tool also works on Windows 10, however when I run the command in terminal it simply hangs and nothing happens:
$ http :8000/
Is there an explanation what is going on and preferably a workaround?
Copyright © 2021 Jogjafile Inc.
I was able to get a hint by appending the
--debugparameter:The crucial point is that the
isattyrelated option is set tofalse.I was able to resole it and getting
httpworking as expected by prepending thewinptycommand:Solution:
By adding this alias line
to the
~/.profilefile, one can use the initial commandhttpas expected withgit bash.