# cosjs **Repository Path**: ConBoHo/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**: 0 - **Forks**: 23 - **Created**: 2022-06-30 - **Last Updated**: 2022-06-30 ## 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/session.js`: ```js var app = cosjs.http(80); app.static(__dirname + '/wwwroot'); app.server('/api/',__dirname + '/api'); cosjs.start(); ``` ## Demo test/session.js