Advertisement
Guest User

server

a guest
Jul 6th, 2016
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1.  
  2. var io = require('socket.io').listen(6255);
  3.  
  4. io.on('connection', function (socket) {
  5.  
  6. console.log("ok")
  7.  
  8. socket.on('controls', function(value) {
  9.  
  10. //ACTION
  11.  
  12. });
  13.  
  14. socket.on('disconnect', function () {
  15.  
  16. console.log("Utilisateur Déconnecté");
  17.  
  18. });
  19.  
  20. });
  21.  
  22. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement