Skip to content

lvn/hype

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hype

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);

About

Node HTTP server implementation using TCP sockets

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published