This app enables real-time bidirectional event-based communication. It consists in:
By adding config variables you can allow few domains to access the socket. You can add domains in config variable just like following:
KEY=ORIGINS and VALUE=mydomain.com:* http://localhost:3000*
A standalone build of socket.io-client is exposed automatically by the
socket.io server as /socket.io/socket.io.js. Alternatively you can
serve the file socket.io.js or socket.io.min.js.
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io('domain',{ query: "parameters" });
socket.on('message', function(){});
socket.on('event', function(data){});
socket.on('disconnect', function(){});
</script>Add socket.io-client to your package.json and then:
var socket = require('socket.io-client')('http://localhost');
socket.on('connect', function(){});
socket.on('event', function(data){});
socket.on('disconnect', function(){});