2단계는 브라우저에 "Wellcome to chat"이라는 메세지를 보내보자. 목표 server 1. 브라우저 console에 연결 되었다는 "Connected to Browser" 라는 메세지를 보낸다. 2. 브라우저에 "hello" 메세지를 보낸다. 3. 브라우저에서 연결이 끊기면 "Disconnected from Browser" 라는 메세지를 보낸다. server.js const server = http.createServer(app); const wss = new WebSoket.Server({ server }); wss.on('connection', (soket) => { console.log('Connected to Browser ✅'); soket.on('close', () => { cons..