Enabels communication between two web pages.
Just install the dependencies and run app.js:
npm install
node app.js
var ws = new WebSocket('ws://localhost:8080');
ws.onopen = function(evt) {
this.send( JSON.stringify({"type":"init","data":"primary"}) );
};
var ws = new WebSocket('ws://localhost:8080');
ws.onopen = function(evt) {
this.send( JSON.stringify({"type":"init","data":"secondary"}) );
};