이전 글... Socket.IO 소개 1 - server Emitting events 서버와 클라이언트 간에 이벤트를 보내는 방법에는 여러 가지가 있습니다. Basic emit // Server io.on("connection", (socket) => { // "world"라는 데이터를 담은 // "hello"라는 event를 보냅니다. socket.emit("hello", "world"); }); // Client // "hello"라는 이벤트에 대한 리스너입니다. socket.on("hello", (arg) => { // 해당 이벤트가 보낸 arg를 출력합니다. console.log(arg); // world }); Socket.IO API는 Node.js EventEmitter에서 영감을 얻었습니다..