I'm developing a MMO game that needs continous socket connection with the server.
There are some requirements for my architechture.
The question is:
What are the recommended methods and modules for that kind of application?
Thanx and sorry for my poor language skills.
You should try express.io.
It's a realtime-web framework that makes it easy to combine express & socket.io. Which means that your regular web and realtime web components should play nicely together.
It has session support and routing features. Also, there is a lot of documentation and example code.
It's way simpler to setup a basic app, then using both libraries separately.
app = require('express.io')
app.http().io()
// your game code goes here :)
app.listen(7076)
For mongo, my favorite is mongo-skin, but mongoose is also very popular.
Best of Luck!
DISCLAIMER: I wrote it :)