Tagged Questions

2
votes
1answer
59 views

HTML5 multi-player game data/event validation best practices

I'll start by saying that I am fully aware that this question might seem subjective at first, but I'll try and provide a specific test case scenario for it to be a clear question about validating the ...
7
votes
2answers
483 views

Is it possible to develop multiplayer games with HTML5?

I know HTML5 is great for web games, but I don't really know if it's possible to develop online games with multiple users, keeping everybody synchronized and handling logins, et cetera. Is it possible ...
4
votes
2answers
2k views

Multiplayer HTML5, Node.js, Socket.IO

I trying create simple Multi-player with HTML5 Canvas, JavaScript(too using John Resig simple Inheritance library) and Node.js with Socket.IO. My client code: var canvas = ...
11
votes
9answers
3k views

Adding multiplayer to an HTML5 game

I am interested in making a game that I currently have a co-op experience, however I'm curious as to the best method of implementing this in HTML5. I have made games before using straight C sockets, ...