Im trying out setting up a webserver with nodeJS with this code:
JavaScript
x
26
26
1
const http = require("http")
2
const port = 8080
3
const fs = require("fs")
4
5
const server = http.createServer(function (req, res) {
6
res.writeHead(200, { "Content-Type": "text/html" })
7
fs.readFile("index.html", function (error, data) {
8
if (error) {
9
res.writeHead(404)
10
res.write("Error")
11
} else {
12
res.write(data)
13
}
14
res.end
15
16
})
17
})
18
19
server.listen(port, function (error) {
20
if (error) {
21
console.log("Something went wrong")
22
} else {
23
console.log("Server is listening on port " + port)
24
}
25
})
26
But when I connect on any browser(tried chrome and mozilla) using either localhost or 127.0.0.1 the page will only show when I shut the server down. It’s constantly loading, not showing anything until I shutdown with ctrl + C. Then it will show my HTML page. Same problem was when I didnt use an html page and just responded with
JavaScript
1
2
1
res.write("hey")
2
Advertisement
Answer
res.end
is a function, try res.end()
You had never ended the request so the browser has been waiting for it to end and it only happened when you closed the server.