From 5e326f51c58e500285ea3daee91986ee1ea518eb Mon Sep 17 00:00:00 2001 From: root Date: Tue, 5 Nov 2013 13:24:42 +0100 Subject: sandbox -> .graveyard --- sandbox/hyper/sink/index.js | 13 ------------- 1 file changed, 13 deletions(-) delete mode 100644 sandbox/hyper/sink/index.js (limited to 'sandbox/hyper/sink') diff --git a/sandbox/hyper/sink/index.js b/sandbox/hyper/sink/index.js deleted file mode 100644 index b556b88d..00000000 --- a/sandbox/hyper/sink/index.js +++ /dev/null @@ -1,13 +0,0 @@ -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/'); -}); -- cgit v1.2.3