Skip to content

Instantly share code, notes, and snippets.

@DarrylDias
Created March 19, 2014 08:54
Show Gist options
  • Save DarrylDias/9637931 to your computer and use it in GitHub Desktop.
Save DarrylDias/9637931 to your computer and use it in GitHub Desktop.
var net = require('net'); // Store net module in net variable
var server = net.createServer(function (socket) { // create a netserver using createServer() function.
socket.write('Information \r\n'); // Write information of the client.
socket.pipe(socket); // connect to socket
});
server.listen(1337, '127.0.0.1'); // port and host running on.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment