How can I use Socket.io and JSON RPC together? How can I get data from server? I.e I got this code and it's doesen't work:
socket.on('query', { jsonrpc: '2.0', "method": "getOrganizationList", "id": 1}, function(data) {
console.log(data);
});