-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
50 lines (42 loc) · 1.34 KB
/
index.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
const http = require("http")
const fs = require("fs")
const path = require("path")
require("dotenv").config()
const PORT = process.env.PORT || 3000
const server = http.createServer((req, res) => {
// STATIC ROUTING
// if (req.url === "/") {
// fs.readFile(path.join(__dirname, "public", "index.html"), (err, data) => {
// if (err) throw err;
// res.writeHead(200, {"Content-Type": "text/html"});
// res.end(data)
// })
// }
// else if (req.url === "/about") {
// fs.readFile(path.join(__dirname, "public", "about.html"), (err, data) => {
// if (err) throw err;
// res.writeHead(200, {"Content-Type": "text/html"});
// res.end(data)
// })
// }
// else if (req.url === "/contact") {
// fs.readFile(path.join(__dirname, "public", "contact.html"), (err, data) => {
// if (err) throw err;
// res.writeHead(200, {"Content-Type": "text/html"});
// res.end(data)
// })
// }
// DYNAMIC ROUTING
let filePath = path.join(__dirname, "public", req.url === "/" ? "index.html" : req.url + ".html")
fs.readFile(filePath, (err, data) => {
if (err) {
res.writeHead(404, {"Content-Type": "text/html"});
res.end("<h1>404 Not Found!</h1>");
}
else {
res.writeHead(200, {"Content-Type": "text/html"});
res.end(data)
}
})
})
server.listen(PORT, () => console.log(`Server is running successfully on port ${PORT}`))