Skip to content

Instantly share code, notes, and snippets.

@dougst
Forked from iainjreid/index.js
Created February 15, 2019 19:28
Show Gist options
  • Select an option

  • Save dougst/1c348626ad8f9dac8251da094523021d to your computer and use it in GitHub Desktop.

Select an option

Save dougst/1c348626ad8f9dac8251da094523021d to your computer and use it in GitHub Desktop.
A very simple TCP echo server, written in Node.js
const net = require('net')
net.createServer(socket => {
socket.on('data', function(data){
console.log('Echoing: %s', data.toString())
socket.write(data.toString())
})
}).listen(8001)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment