Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

TCP Echo Server

const net = require('net');

const server = net.createServer(function(socket) {
    socket.write('hello\n');
    socket.write('world\n');
    socket.on('data', function(data) {
       socket.write('You said: ' + data);
    })
});

server.listen(8000);