在本地测试它工作。在不同的端口(3001、8080)
但是在测试服务器(Azure)上
我在同一台机器上运行 2 个 Node App 实例
$ node api1/index.js (on port 3000)
$ node api2/index.js (on port 3001)
和
$ node api1/index.js (on port 3001)
$ node api2/index.js (on port 3000)
但它仅适用于端口 3000。
如何在 Express 中设置不同的端口?
现在,我在 index.js 上的 app.listen(3001) 进行了更改,但它不起作用。