This is the simplest NodeJS app you can make that uses TCP.
var net = require('net');
var server = net.createServer( onServerHandler );
server.listen(8080, 'http://localhost');
function onServerHandler(socket) {
socket.write('Echo server\r\n');
socket.pipe(socket);
};
Subscribe to new posts
Processing your application
Please check your inbox and click the link to confirm your subscription
There was an error sending the email