Skip to content

Instantly share code, notes, and snippets.

@zTrix
Created April 4, 2011 16:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zTrix/901969 to your computer and use it in GitHub Desktop.
Save zTrix/901969 to your computer and use it in GitHub Desktop.
Node js echo server
var net=require("net");
var sys=require("sys");
var server=net.createServer(function(socket){
socket.pipe(socket);
});
server.listen(3601,null);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment