0.2.1 • Published 10 years ago

http-codec v0.2.1

Weekly downloads
-
License
MIT
Repository
-
Last release
10 years ago

http-codec

A HTTP parser and encoder packaged as a sync stream converter.

Server Usage

var codec = require('http-codec').server;

// Then later in your TCP handling code
stream.on("data", codec.decoder(function (item) {
  // For requests, the first item is { method, path, headers }
  // After that it gives body chunks
  // And an empty item to signify the end of the request stream.
});
0.2.1

10 years ago

0.1.0

11 years ago

0.0.1

11 years ago