What is wrong with this minimal HTTP server handler?const server = http.createServer((req, res) => { res.writeHead(200, { 'Content-Type': 'text/plain' }); res.setHeader('X-Powered-By', 'Node'); res.end('ok'); });