aboutsummaryrefslogtreecommitdiffstats
path: root/library/controller.js
blob: 1e9bc84d2de7e79239c7dc16b535174b35be0d7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
const ParentStream = require('iframe-stream').ParentStream
const SWcontroller = require('./sw-controller')
const SwStream = require('sw-stream/lib/sw-stream.js')
const SetupUntrustedComunication = ('./lib/setup-untrusted-connection.js')
const background = new SWcontroller({
  fileName: '/popup/sw-build.js',
})

const pageStream = new ParentStream()
background.on('ready', (_) => {
  // var inpageProvider = new MetamaskInpageProvider(SwStream(background.controller))
  let swStream = SwStream({
    serviceWorker: background.controller,
    context: 'dapp',
  })
  pageStream.pipe(swStream).pipe(pageStream)

})

background.on('error', console.error)
background.startWorker()