- Assertion Testing
- Buffer
- C++ Addons
- C/C++ Addons - N-API
- Child Processes
- Cluster
- Command Line Options
- Console
- Crypto
- Debugger
- DNS
- Domain
- Errors
- Events
- File System
- Globals
- HTTP
- HTTPS
- Internationalization
- Modules
- Net
- OS
- Path
- Process
- Punycode
- Query Strings
- Readline
- REPL
- Stream
- String Decoder
- Timers
- TLS/SSL
- TTY
- UDP/Datagram
- URL
- Utilities
- V8
- VM
- ZLIB
Node.js v6.17.1 Documentation
Table of Contents
HTTPS#
Stability: 2 - Stable
HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a separate module.
Class: https.Agent#
An Agent object for HTTPS similar to http.Agent. See https.request()
for more information.
Class: https.Server#
This class is a subclass of tls.Server and emits events same as
http.Server. See http.Server for more information.
server.headersTimeout#
- <number> Default:
40000
See http.Server#headersTimeout.
server.setTimeout([msecs][, callback])#
msecs<number> Defaults to 120000 (2 minutes).callback<Function>