소스 검색

Adds Sockets on randomFree

Nikatlas 6 년 전
부모
커밋
ce725fd626
1개의 변경된 파일11개의 추가작업 그리고 1개의 파일을 삭제
  1. 11 1
      services/matchmaking/randomFree.js

+ 11 - 1
services/matchmaking/randomFree.js

@@ -1,7 +1,17 @@
+const io  = require('socket.io')();
+const nsp = io.of('/randomFree');
+
 class randomFree {
+
+	constructor() {
+		nsp.on('connection', function(socket){
+		  console.log('someone connected');
+		});
+	}
+
     join(user){
         //join randomFree queue room
     }
 }
 
-module.exports = randomFree;
+module.exports = new randomFree();