issues
search
tastekim
/
WeAllLie-BE
👀We Are Lie는 보드게임 '스파이 폴' 을 모티브로한 화상채팅으로 진행하는 온라인 보드게임 플랫폼 입니다 !(~2022.12.22)
3
stars
4
forks
source link
Chat/chat 로비채팅, 룸채팅 구현 / 불필요한 코드 정리
#94
Closed
ghost
closed
2 years ago
ghost
commented
2 years ago
1. 로비채팅
접속자 전체에게 메세지 emit
방과 분리하여 다른 이벤트로 사용
on: sendLobbyMsg
emit: receiveLobbyMsg
프론트와 테스트 O
2. 룸채팅
argument로 전달받은 roomNum으로 메세지 emit
on: sendRoomMsg
emit: receiveRoomMsg
프론트와 테스트 X
3. 쓰지 않는 코드/파일 정리
처음에 server.js에 require하지 않아서 chat-socket.js에서 접속이 되지 않아 테스트를 위해 다른 파일에 작성했던 코드 삭제
chat-provider.js, chat-repo.js 두 파일 모두 삭제
메모 파일 삭제 / .gitignore 에서도 삭제
1. 로비채팅
2. 룸채팅
3. 쓰지 않는 코드/파일 정리