Tagged Questions

4
votes
2answers
331 views

How to handle multiplayer in JavaScript?

I'm just doing a bit of research into tech to use for a mobile multi-player game. It's more an experiment at present so for the moment, the only thing that Players need to be aware of is the other ...
4
votes
4answers
480 views

Is a multiplayer game in JavaScript a good idea?

I wanted to make a multiplayer game that runs in the browser, and a friend of mine suggested that I should choose JavaScript as the main language. I already made a lot (registering, logging in, half ...
1
vote
2answers
251 views

Simple Math Multiplayer game - is Ajax sufficient?

I'm planning to create a simple math multiplayer game and I plan to just use Ajax for the server/client communication but I'm not sure if this is sufficient or if I need a socket server. The game ...
-1
votes
1answer
205 views

What do I need to do a MMORTS in JavaScript with small amount of Developers?

Let's throw the skeptics about JavaScript games to dogs, look EA has done MMORTS in JavaScript here -- what!? If you are one of the skeptics here, please, move to other question. -Yes, it is amazing! ...
1
vote
1answer
631 views

Multiplayer game with Cocos2d-Javascript and Node.js

It is possible to make a multiplayer browser based game using cocos2d-javascript + node.js? If so, is there any tutorial about that?
6
votes
3answers
2k views

Tips for communication between JS browser game and node.js server?

I am tinkering around with some simple Canvas based cave flyer game and I would like to make it multiplayer eventually. The plan is to use Node.js on the server side. The data sent over would ...