You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use Socket.io on Android. One way to use Socket.io on Adroid is to get "socket.io.js" file on a server running node.js. Like,
<script src="http://.../socket.io/socet.io.js">
This approach, however, is not cost-effective since whenever making connection to Socket.io, socket.io.js file should be transferred to Android
So my questions is: Is it safe to use the static version of socket.io.js downloaded from the server? In other words, socket.io.js files would be different when connecting to the node.js server with different clients (say, Safari vs. Chrome)?
thanks in advance,