Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've never done networking stuff before so I am kind of confused. Suppose for example, I have a simple pong game setup. If I wanted to make that multiplayer in a sense that two people with different phone can play against each other, then ignoring the code to set that up what else do I need. So I need a dedicated server that handles the communication between the multiple users correct? Can I somehow make my mac into a server that handles that communication? What are my other options? Are there free servers that I can use which I can utilize into my game. I just need to put the pieces together because although I have decent knowledge about the whole project in pieces, I am not sure how to combine everything and put everything together. Can someone clear the uncertainty for me? Thanks.

share|improve this question
1  
Just for future reference, you should try spacing out your paragraph so it's not a giant block of text to read. – SuperDisk Dec 23 '12 at 6:37

closed as not constructive by Will Dec 24 '12 at 21:51

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 2 down vote accepted

For these cases I use Nodejs, Socket.IO and Expressjs, but usually free hosts do not have these software installed. But you can test locally from your Mac and your internal network.

Review post similars to:

Regards.

share|improve this answer
Thanks for the help alditis. Would it be possible to use my local apache that I have set up on my mac to handle the server side code and have my client be able to constantly talk to it when needed? Can you give me some high level guidelines please? – user814628 Dec 24 '12 at 6:24
Would it be something like, the client code would be hosted by my apache server. The html the apache server returns on a device would internally connect to the server hosted on my mac via express.js and the client would now be able to update via server communication? – user814628 Dec 24 '12 at 6:32

Not the answer you're looking for? Browse other questions tagged or ask your own question.