Advertisement
nordlaender

frontend.js

Jul 25th, 2012
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Generated by CoffeeScript 1.3.3
  2. (function() {
  3.   var socket;
  4.  
  5.   socket = io.connect("http://localhost");
  6.  
  7.   socket.on("news", function(data) {
  8.     console.log(data);
  9.     return socket.emit("my other event", {
  10.       my: "data"
  11.     });
  12.   });
  13.  
  14. }).call(this);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement