Skip to content

Instantly share code, notes, and snippets.

View arnaspecelis's full-sized avatar

Arnas arnaspecelis

View GitHub Profile
@sohelamin
sohelamin / socket.io-cheatsheet.md
Last active July 4, 2023 21:22
Socket.io Cheatsheet

sending to sender-client only

socket.emit('message', "this is a test");

sending to all clients, include sender

io.emit('message', "this is a test");