Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在本地使用cloud9,我希望能够在运行我的节点服务器时配置端口(因为我在客户端使用socket.io,每次启动后都必须更新路径并不方便)。
我已经看到我们可以使用命令行启动服务器,我想这与此有关,但我没有找到任何东西node -help
node -help
在浏览器中使用 socket.io 连接时,只需执行io.connect(location.host). location.host将自动成为提供当前网页的主机名:端口,因此无论部署如何都无需更改它。我对 cloud9 并不特别熟悉,但是在节点 Web 服务器中,您可以明确指定在调用server.listen(port, optionalIP).
io.connect(location.host)
location.host
server.listen(port, optionalIP)
像这样启动 cloud9 ide 服务器:
bin/cloud9.sh -l 0.0.0.0 -p 3232