diff options
| author | tv <tv@iiso> | 2011-09-15 00:14:41 +0200 | 
|---|---|---|
| committer | tv <tv@iiso> | 2011-09-15 00:14:41 +0200 | 
| commit | b172e0b1314d1eaec8f72710e6b44ef3acdd859a (patch) | |
| tree | ad14ccc1d4d967f13cfe0bfdb027146beb396528 /hyper | |
| parent | cd9ad4429884c4418bac04265881c118191ade50 (diff) | |
//hyper/sink: initial commit
Diffstat (limited to 'hyper')
| -rw-r--r-- | hyper/sink/index.js | 13 | 
1 files changed, 13 insertions, 0 deletions
diff --git a/hyper/sink/index.js b/hyper/sink/index.js new file mode 100644 index 00000000..b556b88d --- /dev/null +++ b/hyper/sink/index.js @@ -0,0 +1,13 @@ +require('http').createServer(function (req, res) { + +  req.on('data', function (data) { +    require('util').puts(data); +  }); + +  req.on('end', function () { +    res.writeHead(200, {'Content-Type': 'text/plain', 'Content-Length': 0}); +    res.end(); +  }); +}).listen(1337, '127.0.0.1', function () { +  console.log('Running HyperSink at http://127.0.0.1:1337/'); +});  | 
