subgos

1.0.5 • Public • Published

Subgos

A simple nodejs web server framework. site

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

Readme

Keywords

Package Sidebar

Install

npm i subgos

Weekly Downloads

5

Version

1.0.5

License

MIT

Last publish

Collaborators

  • tangoboy