Skip to content
Advertisement

NodeJS Can only connect when Server is shutdown

Im trying out setting up a webserver with nodeJS with this code:

JavaScript

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

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.

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement