Skip to content

Instantly share code, notes, and snippets.

@juice49
Created February 18, 2016 21:29
Show Gist options
  • Save juice49/da39b4983af138f9c865 to your computer and use it in GitHub Desktop.
Save juice49/da39b4983af138f9c865 to your computer and use it in GitHub Desktop.
Websocket router
function routeWebsocket(server, controllers = []) {
server.on('connection', client => {
client.on('message', ({ event, data }) => {
const controller = controllers[event];
if(controller) {
controller(data);
}
});
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment