Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 2nd, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. What are the cross-platform events/ polling JS frameworks?
  2. //server code
  3.  socket.on('my other event', function (data) {
  4.     console.log(data);
  5.   });
  6.  
  7. //client code
  8. socket.emit('my other event', { my: 'data' });