NG icon indicating copy to clipboard operation
NG copied to clipboard

Merge HTTPS module into HTTP

Open brendanashworth opened this issue 9 years ago • 4 comments

As of right now, there exists a wonderful HTTP module, which interweaves libuv, the http_parser, v8 and JavaScript into a perfect request and server suite, complete with all the features you could ask for.

Next to that, there is an HTTPS module, with an inherited API that throws OpenSSL onto the network stack and calls it a new module. This sort of oddly explicit inheritance isn't just weird in thought but it also causes side effects, which may include:

  • Using https.request() on an HTTP link (and vice versa), only to get an error for a rather supported action: "Error: Protocol "http:" not supported. Expected "https:"."
  • Awkward handling of both protocols and both modules to complete the same goal, as neither module can do what the other does
  • Incomplete documentation that only shows half of what the module has to offer (or should I say, another module)

And so, my proposal: that we eventually merge the HTTPS module completely into the current HTTP module, allowing:

  • HTTPS requests to occur when OpenSSL is present, otherwise, throw error (like current behavior)
  • HTTPS server to be created when given proper TLS parameters (ref io.js#1101)

:heart:

brendanashworth avatar Mar 26 '15 07:03 brendanashworth

+1

feross avatar Mar 26 '15 07:03 feross

:+1:

juliangruber avatar Mar 26 '15 08:03 juliangruber

What was the originial reasoning to have two modules?

juliangruber avatar Mar 26 '15 08:03 juliangruber

I don't think anyone will disagree with the basic premise. The question is: can it be done without breaking existing code?

@juliangruber No reason that I'm aware of.

bnoordhuis avatar Mar 26 '15 10:03 bnoordhuis