Skip to content

Instantly share code, notes, and snippets.

View simmani5's full-sized avatar

jaeman simmani5

View GitHub Profile
@simmani5
simmani5 / nodejs-tcp-example.js
Created March 18, 2019 21:28 — forked from tedmiston/nodejs-tcp-example.js
Node.js TCP client and server example
/*
In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp
server, but for some reason omit a client connecting to it. I added an
example at the bottom.
Save the following server in example.js:
*/
var net = require('net');