-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.js
More file actions
97 lines (65 loc) · 2.39 KB
/
server.js
File metadata and controls
97 lines (65 loc) · 2.39 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
let http = require("http")
let fs = require("fs")
const server = http.createServer((req, res) => {
console.log(req.url, req.method)
switch (req.url) {
case "/":
res.writeHead(200, {
"Content-Type": "text/plain"
})
res.write("Hello world")
res.write(" from Ready 4IT")
res.end()
break;
case "/sales":
if (req.method == "GET") {
fs.readFile("sales.json", (err, data) => {
if (err) {
res.writeHead(400, {
"Content-Type": "application/json"
})
res.write(JSON.stringify({ message: err }))
res.end()
} else {
res.writeHead(200, {
"Content-Type": "application/json"
})
res.write(JSON.stringify(JSON.parse(data)))
res.end()
}
})
} else if (req.method == "POST") {
// code to process the data
let body = ""
req.on("data", (chunk) => {
body += chunk.toString()
})
req.on("end", () => {
res.writeHead(200, {
"Content-Type": "application/json"
})
body = JSON.parse(body)
res.write(JSON.stringify({ message: "Data processed successfully", body }))
res.end()
})
} else {
res.writeHead(400, {
"content-type": "application/json"
})
res.write(JSON.stringify({ message: "This endpoint only proceses GET requests" }))
res.end()
break;
}
break;
default:
res.writeHead(404, {
"Content-Type": "application/json"
})
res.write(JSON.stringify({ message: "Page not found" }))
res.end()
break;
}
})
server.listen(3000, () => {
console.log("Server is running successfully on port 3000")
})