Skip to content

Instantly share code, notes, and snippets.

@kimjoar
Created October 22, 2014 12:33
Show Gist options
  • Save kimjoar/8266b8b2e0dd00fb4a19 to your computer and use it in GitHub Desktop.
Save kimjoar/8266b8b2e0dd00fb4a19 to your computer and use it in GitHub Desktop.
var net = require('net');
var socket = net.connect({ port: 8001 });
process.stdin
.pipe(socket)
.pipe(process.stdout);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment