aboutsummaryrefslogtreecommitdiffhomepage
path: root/public
diff options
context:
space:
mode:
authorMarvin Borner2019-01-26 20:36:31 +0100
committerMarvin Borner2019-01-26 20:36:31 +0100
commit31d6e5e9a619d5680001b84c5131a7b5b151ca29 (patch)
treedf1aedaf3a579817bd1b06eb935f868b652e99b5 /public
parent677689257a38cb8b8cf06a5c8d4ad2398381e41d (diff)
Cleaned up code for deployment
Diffstat (limited to 'public')
-rw-r--r--public/scripts/chat.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/public/scripts/chat.js b/public/scripts/chat.js
index 711912b..5f437d9 100644
--- a/public/scripts/chat.js
+++ b/public/scripts/chat.js
@@ -6,6 +6,7 @@ const nolookalikes = require('nanoid-dictionary/nolookalikes');
let connectedPeers = []; // TODO: Save new peers in array
let connectedPeer;
const peerId = generate(nolookalikes, 16);
+const host = '127.0.0.1';
// setup encryption
(async () => {
@@ -20,7 +21,7 @@ const peerId = generate(nolookalikes, 16);
})();
function chat() {
- const peer = new Peer(peerId, {host: '127.0.0.1', port: 4242, path: '/', debug: 0});
+ const peer = new Peer(peerId, {host: host, port: 8080, path: '/api', debug: 0});
// Peer events
peer.on('open', id => console.log('[LOG] Your ID is', id));