socket.io browser client code example
Example 1: Socket.io Client Tool
git clone https://github.com/amritb/socketio-client-tool.git
Example 2: socket.io doc
const socket = new WebSocket('ws://localhost:3000');socket.onopen(() => { socket.send('Hello!');});socket.onmessage(data => { console.log(data);});