我正在尝试使用其介绍示例来了解socket.io的工作原理。
https://socket.io/get-started/chat#Integrating-Socket-IO
基本上index.js提供index.html。很简单。
index.js
https://github.com/socketio/chat-example/blob/master/index.js
index.html
https://github.com/socketio/chat-example/blob/master/index.html
我看不到的是index.html(客户端)如何知道从哪里提供index.js的。客户端中没有指定IP地址或端口。
我想将任意客户端连接到服务器的ip:port,但客户端代码未指定其连接位置。如何运作?