-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpExplain.js
52 lines (43 loc) · 1.21 KB
/
httpExplain.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//import http inbuilt module from node.
const {createServer} = require('http')
//Always look at things from the servers point of VIEW.. Serving Files and Data!!!
//createServer start a new webserver and returns an object
const server = createServer((received, back) =>{ //received = request and back = response
back.write("Hii web")
back.end()
//or
back.end("Hii web")
})
//OUTPUT Object
console.log(server)
/**
Server {
maxHeaderSize: undefined,
insecureHTTPParser: undefined,
_events: [Object: null prototype] {
request: [Function (anonymous)],
connection: [Function: connectionListener]
},
_eventsCount: 2,
_maxListeners: undefined,
_connections: 0,
_handle: null,
_usingWorkers: false,
_workers: [],
_unref: false,
allowHalfOpen: true,
pauseOnConnect: false,
httpAllowHalfOpen: false,
timeout: 0,
keepAliveTimeout: 5000,
maxHeadersCount: null,
headersTimeout: 60000,
requestTimeout: 0,
[Symbol(IncomingMessage)]: [Function: IncomingMessage],
[Symbol(ServerResponse)]: [Function: ServerResponse],
[Symbol(kCapture)]: false,
[Symbol(async_id_symbol)]: -1
}
*/
// add a listen parameter _connectionKey: '6::::8000' to server object
server.listen(8000)