A Go websocket library with an API similar to Socket.IO... but not Socket.IO
Go to file
2017-02-14 20:07:39 +00:00
backend updated ssgrpc backend to work with latest version of protobufs 2017-02-14 20:07:39 +00:00
client let there be websockets 2016-08-09 00:48:14 +00:00
examples moar documentation 2016-08-12 14:36:13 -07:00
log moar documentation 2016-08-12 14:36:13 -07:00
tools moar documentation 2016-08-12 14:36:13 -07:00
hub.go let there be websockets 2016-08-09 00:48:14 +00:00
LICENSE let there be websockets 2016-08-09 00:48:14 +00:00
README.md that was bothering me 2016-09-06 03:44:57 +00:00
server_test.go I fmted 2016-08-12 18:29:47 +00:00
server.go add broadcast/roomcast to server struct so they can be used outside of socket events 2016-10-05 23:49:33 +00:00
socket.go I fmted 2016-08-12 18:29:47 +00:00

Sacrificial-Socket

A Go server library and pure JS client library for managing communication between websockets, that has an API similar to Socket.IO, but feels less... well, Javascripty. Socket.IO is great, but nowadays all modern browsers support websockets natively, so in most cases there is no need to have websocket simulation fallbacks like XHR long polling or Flash. Removing these allows Sacrificial-Socket to be lightweight and very performant.

Sacrificial-Socket supports rooms, roomcasts, broadcasts, and event emitting just like Socket.IO, but with one key difference. The data passed into event functions is not an interface{} that is implied to be a string or map[string]interface{}, but is always passed in as a []byte making it easier to unmarshal into your own JSON data structs, convert to a string, or keep as binary data without the need to check the data's type before processing it. It also means there aren't any unnecessary conversions to the data between the client and the server.

Sacrificial-Socket also has a MultihomeBackend interface for syncronizing broadcasts and roomcasts across multiple instances of Sacrificial-Socket running on multiple machines. Out of the box Sacrificial-Socket provides a MultihomeBackend interface for the popular noSQL database MongoDB, and one for the not so popular GRPC protocol, for syncronizing instances on multiple machines.

In depth examples can be found in the examples directory and full documentation can be found at Godoc.org

Usage

Client Javascript:

(function(SS){ 'use strict';
    var ss = new SS('ws://localhost:8080/socket');
    ss.onConnect(function(){
        ss.emit('echo', 'hello echo!');
    });
    
    ss.on('echo', function(data){
        alert('got echo:', data);
        ss.close();
    });
    
    ss.onDisconnect(function(){
        console.log('socket connection closed');
    });
})(window.SS);

Server Go:

package main

import(
    "net/http"
    ss "github.com/raz-varren/sacrificial-socket"
)

func doEcho(s *ss.Socket, data []byte) {
    s.Emit("echo", string(data))
}

func main() {
    s := ss.NewServer()
    s.On("echo", doEcho)
    
    http.Handle("/socket", s.WebHandler())
    http.ListenAndServe(":8080", nil);
}