当我尝试使用node创建服务器时出现错误,nodemon崩溃

eyh26e7m  于 2023-08-04  发布在  Node.js
关注(0)|答案(1)|浏览(114)

this is my code along with the error
这应该在指定端口上创建服务器。错误是Nodemon应用程序在启动前等待文件更改时崩溃。我已经尝试过更改端口,但没有帮助,并且后台没有运行服务器。

z9smfwbn

z9smfwbn1#

不能将参数作为字符串传递给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}`)
})

字符串

相关问题