From 31d6e5e9a619d5680001b84c5131a7b5b151ca29 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 26 Jan 2019 20:36:31 +0100 Subject: Cleaned up code for deployment --- public/scripts/chat.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'public/scripts') 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)); -- cgit v1.2.3