# cosjs **Repository Path**: wodaq/cosjs ## Basic Information - **Project Name**: cosjs - **Description**: nodejs开发web服务器群集,主要针对页游,手游服务器端,可以方便的搭建web 服务器,同时又具有很高的扩展性。 - **Primary Language**: NodeJS - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 89 - **Forks**: 23 - **Created**: 2015-01-04 - **Last Updated**: 2023-10-17 ## Categories & Tags **Categories**: game-dev **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/session.js`: ```js var app = cosjs.http(80); app.static(__dirname + '/wwwroot'); app.server('/api/',__dirname + '/api'); cosjs.start(); ``` ## Demo test/session.js