Skip to content

Instantly share code, notes, and snippets.

View j4rs's full-sized avatar

Jorge Rodriguez j4rs

View GitHub Profile
@j4rs
j4rs / rhyboows.js
Created June 12, 2012 19:52
Universal WebSocket with pub/sub and load balancing support...
// we made this simple library to not have to deal with
// complex implementations of websocket
var RhybooWS = {
error: "Your browser does not support native web sockets"
}
if ("WebSocket" in window) {
RhybooWS = function (options) {