Why is this HTTP request not working?

  1. What do you want to achieve?
    Do a simple HTTP request in NodeJS

  2. 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 silent

    This works:
    image

    This doesn’t work:
    image

  3. 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.