NodeJS: How to get the server's port?

后端 未结 19 1522
醉梦人生
醉梦人生 2020-12-02 05:47

You often see example hello world code for Node that creates an Http Server, starts listening on a port, then followed by something along the lines of:

conso         


        
19条回答
  •  执笔经年
    2020-12-02 06:29

    In case when you need a port at the time of request handling and app is not available, you can use this:

    request.socket.localPort
    

提交回复
热议问题