-
What do you want to achieve?
Do a simple HTTP request in NodeJS -
What is the issue?
For some reason, the request library works, but the “HTTP.request” doesn’t
“By “HTTP.request” doesn’t work” I mean the code doesn’t output anything and keeps waiting, it doesn’t end and doesn’t error. Just remain silentThis works:

This doesn’t work:

-
What solutions have you tried so far?
The request library, but I do not know why the HTTP.request doesn’t work
Found the answer, in HTTP.request, you need to call “.end()” to actually send the request.

