this is my code along with the error这应该在指定端口上创建服务器。错误是Nodemon应用程序在启动前等待文件更改时崩溃。我已经尝试过更改端口,但没有帮助,并且后台没有运行服务器。
z9smfwbn1#
不能将参数作为字符串传递给server.listen
server.listen
const http = require('http'); const PORT=2000; const HOST="localhost"; const server = http.createServer((req, res, next) => { if(req.url == "/about"){ return res.end("<h1> About page</h1>") } }) server.listen(PORT, HOST,()=>{ console.log(`server is running on http://${HOST}:${PORT}`) })
字符串
1条答案
按热度按时间z9smfwbn1#
不能将参数作为字符串传递给
server.listen
字符串