Skip to content

Instantly share code, notes, and snippets.

View rhomoelle's full-sized avatar

Raphael Homoelle rhomoelle

View GitHub Profile
@bradwright
bradwright / websockets-server.js
Created June 11, 2011 23:29
Pure Node.js WebSockets server
/*
* node-ws - pure Javascript WebSockets server
* Copyright Bradley Wright <brad@intranation.com>
*/
// Use strict compilation rules - we're not animals
'use strict';
var net = require('net'),
crypto = require('crypto');