따라서 sender인 socket에 해당되는 client에게도 전달된다.
io.on("connection", (socket) => { io.emit("hello", "world"); });
io.on("connection", (socket) => { socket.broadcast.emit("hello", "world"); });
출처: socket.io documentation