Skip to content

Instantly share code, notes, and snippets.

@hyqhyq3
Created August 29, 2013 04:48
Show Gist options
  • Save hyqhyq3/6374372 to your computer and use it in GitHub Desktop.
Save hyqhyq3/6374372 to your computer and use it in GitHub Desktop.
var net = require("net");
var server = net.createServer(function(req) {
req.on('data', function(data) {
req.write(data);
});
});
server.listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment