Skip to content

Instantly share code, notes, and snippets.

View DomBurf's full-sized avatar

Dominic Burford DomBurf

View GitHub Profile
@DomBurf
DomBurf / SimpleChatServer.js
Last active August 29, 2015 14:22
A very simple TCP chat server written in Node.js
//ooen all required modules
var net = require('net');
var util = require('util');
//declare the sockets array and port number
var sockets = [];
var port = 4000;
//start the chat server
require('net').createServer(function(socket){