Skip to content
This repository was archived by the owner on Mar 25, 2018. It is now read-only.
This repository was archived by the owner on Mar 25, 2018. It is now read-only.

Merge HTTPS module into HTTP #12

@brendanashworth

Description

@brendanashworth

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)

❤️

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions