Skip to content

Instantly share code, notes, and snippets.

@nurfarazi
Created November 9, 2015 06:30
Show Gist options
  • Save nurfarazi/a8fc8aee2898fbe24f18 to your computer and use it in GitHub Desktop.
Save nurfarazi/a8fc8aee2898fbe24f18 to your computer and use it in GitHub Desktop.
var net = require('net');
net.createServer(function(socket){
socket.write('hello\n');
socket.write('world\n');
socket.on('data', function(data){
socket.write(data.toString().toUpperCase())
});
}).listen(8000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment