-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathHTTPiterator.js
More file actions
44 lines (37 loc) · 782 Bytes
/
HTTPiterator.js
File metadata and controls
44 lines (37 loc) · 782 Bytes
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
const HTML = (error="unexpected") => {
return `<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ERROR</title>
</head>
<body>
${error}
</body>
</html>`;
}
const writeHTML = (HTML) => {
response.writeHead(200,{
'Content-Type': 'text/html',
'Content-Length': HTML.length,
'Expires': new Date().toUTCString()
})
}
const server = (route = "/", port ) => {
//
http.createServer(
(request, response)=>{
if(request.url == route){
writeHTML(HTML)
response.end(HOME)
}
else{
writeHTML(HTML)
response.end(HTML)
}
}
).listen(port);
//
}
server("/")