77HTTPS is the HTTP protocol over TLS/SSL. In Node.js this is implemented as a
88separate module.
99
10- ## Class: https.Agent
10+ ## Class: ` https.Agent `
1111<!-- YAML
1212added: v0.4.5
1313changes:
@@ -23,7 +23,7 @@ changes:
2323An [ ` Agent ` ] [ ] object for HTTPS similar to [ ` http.Agent ` ] [ ] . See
2424[ ` https.request() ` ] [ ] for more information.
2525
26- ### new Agent(\ [ options\] )
26+ ### ` new Agent([options]) `
2727<!-- YAML
2828changes:
2929 - version: v12.5.0
@@ -45,7 +45,7 @@ changes:
4545
4646 See [ ` Session Resumption ` ] [ ] for information about TLS session reuse.
4747
48- ## Class: https.Server
48+ ## Class: ` https.Server `
4949<!-- YAML
5050added: v0.3.4
5151-->
@@ -54,7 +54,7 @@ added: v0.3.4
5454
5555See [ ` http.Server ` ] [ ] for more information.
5656
57- ### server.close(\ [ callback\] )
57+ ### ` server.close([callback]) `
5858<!-- YAML
5959added: v0.1.90
6060-->
@@ -64,7 +64,7 @@ added: v0.1.90
6464
6565See [ ` server.close() ` ] [ `http.close()` ] from the HTTP module for details.
6666
67- ### server.headersTimeout
67+ ### ` server.headersTimeout `
6868<!-- YAML
6969added: v11.3.0
7070-->
@@ -73,18 +73,18 @@ added: v11.3.0
7373
7474See [ ` http.Server#headersTimeout ` ] [ ] .
7575
76- ### server.listen()
76+ ### ` server.listen() `
7777
7878Starts the HTTPS server listening for encrypted connections.
7979This method is identical to [ ` server.listen() ` ] [ ] from [ ` net.Server ` ] [ ] .
8080
81- ### server.maxHeadersCount
81+ ### ` server.maxHeadersCount `
8282
8383* {number} ** Default:** ` 2000 `
8484
8585See [ ` http.Server#maxHeadersCount ` ] [ ] .
8686
87- ### server.setTimeout(\ [ msecs\]\ [ , callback\] )
87+ ### ` server.setTimeout([msecs] [, callback]) `
8888<!-- YAML
8989added: v0.11.2
9090-->
@@ -95,7 +95,7 @@ added: v0.11.2
9595
9696See [ ` http.Server#setTimeout() ` ] [ ] .
9797
98- ### server.timeout
98+ ### ` server.timeout `
9999<!-- YAML
100100added: v0.11.2
101101-->
@@ -104,7 +104,7 @@ added: v0.11.2
104104
105105See [ ` http.Server#timeout ` ] [ ] .
106106
107- ### server.keepAliveTimeout
107+ ### ` server.keepAliveTimeout `
108108<!-- YAML
109109added: v8.0.0
110110-->
@@ -113,7 +113,7 @@ added: v8.0.0
113113
114114See [ ` http.Server#keepAliveTimeout ` ] [ ] .
115115
116- ## https.createServer(\ [ options\]\ [ , requestListener\] )
116+ ## ` https.createServer([options] [, requestListener]) `
117117<!-- YAML
118118added: v0.3.4
119119-->
@@ -156,8 +156,8 @@ https.createServer(options, (req, res) => {
156156}).listen (8000 );
157157```
158158
159- ## https.get(options\ [ , callback\] )
160- ## https.get(url\ [ , options\]\ [ , callback\] )
159+ ## ` https.get(options[, callback]) `
160+ ## ` https.get(url[, options] [, callback]) `
161161<!-- YAML
162162added: v0.3.6
163163changes:
@@ -197,15 +197,15 @@ https.get('https://encrypted.google.com/', (res) => {
197197});
198198```
199199
200- ## https.globalAgent
200+ ## ` https.globalAgent `
201201<!-- YAML
202202added: v0.5.9
203203-->
204204
205205Global instance of [ ` https.Agent ` ] [ ] for all HTTPS client requests.
206206
207- ## https.request(options\ [ , callback\] )
208- ## https.request(url\ [ , options\]\ [ , callback\] )
207+ ## ` https.request(options[, callback]) `
208+ ## ` https.request(url[, options] [, callback]) `
209209<!-- YAML
210210added: v0.3.6
211211changes:
0 commit comments