what is the difference between socket.send and socket.emit code example
Example: socket io socket emit vs send
// allows you to emit custom events on the server and client
socket.emit('my event', 'my data')
// sends messages which are received with the 'message' event
socket.send('my message')