How to download a file with Node.js using HTTPS?

You should use https module then. Quoting the docs:

HTTPS is the HTTP protocol over TLS/SSL. In Node this is implemented
as a separate module.

The good news is that the request-related methods of that module (https.request(), https.get() etc.) support all the options that the ones from http do.

Leave a Comment