nodejs game server framework
npm install cosjscosjs - a node.js http & socket server
===========================
This is a web http & socket for node.js. easy to create web or mobile game server.
Install with:
npm install cosjs
demo/index.js:
index.js
var cosjs = require('cosjs');
var config = require('./config');
cosjs.http(config);
cosjs.start();
`
`develop.js
var root = __dirname;
exports = module.exports = {
port : 80,
fnum : 0,
shell : root+'/process/http',
}
``