Skip to content

Instantly share code, notes, and snippets.

@sturadnidge
Last active January 7, 2018 01:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sturadnidge/460238a4d3a0520241c1e92d9175d586 to your computer and use it in GitHub Desktop.
Save sturadnidge/460238a4d3a0520241c1e92d9175d586 to your computer and use it in GitHub Desktop.
node.js tcp server
var net = require('net');
var server = net.createServer(function(socket) {
socket.write('ADMIN HE DOING IT SIDEWAYS\r\n');
socket.pipe(socket);
});
server.listen(process.env.PORT);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment