hype-server
v0.0.1
Published
HTTP implementation from TCP
Readme
Hype
by Elvin Yung
Implementation of an HTTP server using TCP that attempts to emulate the Node HTTP API.
Install
Download from NPM.
Quickstart
var hype = require('hype');
var server = hype.createServer(function(req, res) {
res.end('something');
});
server.listen(3000);