chat 기능 정리- 실시간 웹 소켓 통신을 위한 라이브러리 socket.io 설치- http 모듈로 서버 생성- 생성된 서버에 Socket.IO를 바인딩하여 실시간 통신 기능 활성화. const server = http.createServer(app);const io = socketIo(server);주요 코드 정리- app.js에서 socket.io 이벤트 처리// app.jsio.on('connection', (socket) => { // 사용자 입장 socket.on('newUser', (name) => { socket.name = name; io.emit('update', { type: 'connect', name: 'SERVER', message: `${name}님이 ..