socket io send html to specific client code example
Example 1: html socket io import
<script src="/socket.io/socket.io.js"></script>
Example 2: How to send a message to a particular client with socket.io
io.sockets.in('[email protected]').emit('new_msg', {msg: 'hello'});