本文介绍了process.env.PORT打印字符串怪异的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在运行的console.log(前preSS服务器侦听端口+端口);在已部署的Azure网站上的Node.js
,我得到的以下字符串
When running console.log("Express server listening on port " + port);
in node.js on a deployed Azure website, I get the following string
Express server listening on port \\.\pipe\d9797e42-9e1f-421c-91b9-3d86496eaeb8
这是什么,我该如何确定哪些端口我的网站真的不多了?
What is this and how can I determine what port my site is really running on?
推荐答案
应该端口80上运行。
好像来自服务器的内部指令
Seems like an internal instruction from the server
这篇关于process.env.PORT打印字符串怪异的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!