# cosjs **Repository Path**: chenwenbin_admin/cosjs ## Basic Information - **Project Name**: cosjs - **Description**: nodejs开发web服务器群集,主要针对页游,手游服务器端,可以方便的搭建web 服务器,同时又具有很高的扩展性。 - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 23 - **Created**: 2015-01-05 - **Last Updated**: 2020-12-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README cosjs - a node.js web server =========================== This is a web server for node.js. easy to create web or mobile game server. Install with: npm install cosjs ## Usage Simple example, included as `test/index.js`: ```js var cosjs = require("cosjs"); var server = new cosjs.http(); server.start(80); ```