Why does this HTTP server hang and never finish the response in the browser?const http = require('http'); http.createServer((req, res) => { res.write('Hello'); }).listen(3000);