+ const socketUrl = 'http://unlimited.pizza:8000/';
+ const currentUrl = activeTabs[0].url;
+
+ this.socket = io(socketUrl);
+
+ this.socket.on('connect', function() {
+ console.log("Connected to signaling server");
+ });
+
+ this.socket.on('disconnect', function() {
+ console.log("disconnected from signaling server");
+ });
+
+ this.socket.on('addPeer', function() {
+ this.peers++;
+ console.log(`There are now ${this.peers} participants`);
+ });
+
+ this.socket.on('removePeer', function() {
+ this.peers--;
+ console.log(`There are now ${this.peers} participants`);
+ });
+