# subgos **Repository Path**: ddm/subgos ## Basic Information - **Project Name**: subgos - **Description**: A simple nodejs web server framework. - **Primary Language**: NodeJS - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2016-12-09 - **Last Updated**: 2022-06-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #Subgos [![](https://img.shields.io/npm/v/subgos.svg)](https://www.npmjs.com/package/subgos) ![](https://img.shields.io/npm/dt/subgos.svg) ![](https://img.shields.io/npm/l/subgos.svg) ![](https://img.shields.io/node/v/subgos.svg) A simple nodejs web server framework. [site](http://git.oschina.net/ddm/subgos "subgos") `npm install subgos` ###Quick Start require('subgos'); var http = require('http'); var server = http.createServer().listen(8888); server.get('/', function(req, res) { res.writeHead(200, {'Content-Type': 'text/html'}); res.end('Hello World'); }); usage see demo.js