Guest User

Untitled

a guest
Feb 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <script src="/socket.io/socket.io.js"></script>
  2. <script>
  3.  
  4. var i = 0;
  5.  
  6. var socket = io.connect();
  7.  
  8. socket.on('connect', function(){
  9. setInterval(function(){
  10.  
  11. socket.emit('print', i++);
  12.  
  13. }, 1000);
  14. });
  15.  
  16. </script>
Add Comment
Please, Sign In to add comment