socket io tattorial code example
Example 1: socket.io doc
const socket = new WebSocket('ws://localhost:3000');socket.onopen(() => { socket.send('Hello!');});socket.onmessage(data => { console.log(data);});
Example 2: simple socket.io chat
npm install socket.io