Skip to content

Instantly share code, notes, and snippets.

@acodesmith
Created March 26, 2015 20:18
Show Gist options
  • Save acodesmith/c0ae09d4ecae0722d11b to your computer and use it in GitHub Desktop.
Save acodesmith/c0ae09d4ecae0722d11b to your computer and use it in GitHub Desktop.
SailsJS simple sockets.io sub/pub functions for front-end javascript.
io.socket.get('/user', {}, function(users){
console.log(users);
});
io.socket.on('user', function(message){
console.log('Got Message', message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment