emit cheat sheet code example
Example 1: emit cheatsheet
io.on("connection", (socket) => {
socket.emit("hello", "can you hear me?", 1, 2, "abc");
socket.broadcast.emit("broadcast", "hello friends!");
socket.to("game").emit("nice game", "let's play a game");
socket.to("game1").to("game2").emit("nice game", "let's play a game (too)");
io.in("game").emit("big-announcement", "the game will start soon");
io.of("myNamespace").emit("bigger-announcement", "the tournament will start soon");
io.of("myNamespace").to("room").emit("event", "message");
io.to(socketId).emit("hey", "I just met you");
socket.emit("question", "do you think so?", (answer) => {});
socket.compress(false).emit("uncompressed", "that's rough");
socket.volatile.emit("maybe", "do you really need it?");
io.local.emit("hi", "my lovely babies");
io.emit("an event sent to all connected clients");
});
Example 2: socket emit to specific room using nodejs socket.io
io.on('connection', function(socket){ socket.to('some room').emit('some event');});