aboutsummaryrefslogtreecommitdiffstats
path: root/mascara/src/proxy.js
diff options
context:
space:
mode:
Diffstat (limited to 'mascara/src/proxy.js')
-rw-r--r--mascara/src/proxy.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/mascara/src/proxy.js b/mascara/src/proxy.js
new file mode 100644
index 000000000..eabc547b4
--- /dev/null
+++ b/mascara/src/proxy.js
@@ -0,0 +1,26 @@
+const ParentStream = require('iframe-stream').ParentStream
+const SWcontroller = require('client-sw-ready-event/lib/sw-client.js')
+const SwStream = require('sw-stream/lib/sw-stream.js')
+const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js')
+
+let intervalDelay = Math.floor(Math.random() * (30000 - 1000)) + 1000
+const background = new SWcontroller({
+ fileName: '/background.js',
+ letBeIdle: false,
+ wakeUpInterval: 30000,
+ intervalDelay,
+})
+
+const pageStream = new ParentStream()
+background.on('ready', (_) => {
+ let swStream = SwStream({
+ serviceWorker: background.controller,
+ context: 'dapp',
+ })
+ pageStream.pipe(swStream).pipe(pageStream)
+
+})
+background.on('updatefound', () => window.location.reload())
+
+background.on('error', console.error)
+background.startWorker()