您经常会看到 Node 的 hello world 代码示例,它创建了一个 Http 服务器,开始监听端口,然后按照以下行进行处理:
console.log('Server is listening on port 8000');
但理想情况下,你会想要这个:
console.log('Server is listening on port ' + server.port);
如何检索服务器当前正在侦听的端口,而不在调用 server.listen()
之前将数字存储在变量中?
我以前见过这样做,但是在 Node 文档中找不到它?