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