Question is there a tutorial about html5 and multi-player

question is there a tutorial about html5 and multi-player I try to use in html5 through nodejs and nginx

1 I do not know how to use websocket in unreal
2 and the use of websocket that I could do only works with the native package of window

the game that I think to do in html5 will not be complicated sending the command like a chat for example

This may be quite an advanced feature at this point, haven’t heard of too many developers doing networked games at the moment. Building UE4 from source for potential needed changes is definitely good to have here, I think. This may need to dig into the sources for some adjustments.

If you’re looking to do all the networking communication manually in JS code via WebSockets, and have UE4 only call out to your JS code to synchronize state, then you could try looking at something like HTML5 Content: Control Browser From inside UE4 - Platform & Builds - Epic Developer Community Forums to get tips for bidirectional communication. That might give ideas how to marshall data back and forth the JS<->engine boundary. In JS land, you can use whatever web apis you want to as usual, so e.g. WebSockets related documentation then applies directly.