Earlier quoted context omitted.
The big issue here, is that you assume that you can get the same ultra-light Google search to give you the same answer for Go and Rust. That's a totally unrealistic expectations! If you google “nodejs http”, “PHP http”, “python http” or “Java http” you don't have the answer you're looking for either! “How to perform an http request in Rust” is a Google query that makes much more sense, and works for all the aforement…
I disagree. Searching for [python http] works fine. Top result is this page: https://docs.python.org/3/library/http.client.html which explains precisely how to send http requests. Searching for [nodejs http] works fine as well. You get this page: https://nodejs.org/api/http.html Which does, in fact, give you a library that can make http requests. I won't dig into php and java because I'm not familiar enough with thos…
Re: Go Is the New Ruby
#61The second link for "rust http" for me (and in incognito mode) points to https://github.com/hyperium/hyper, which is exactly what you want.