aboutsummaryrefslogtreecommitdiffstats
path: root/library/controller.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/controller.js')
-rw-r--r--library/controller.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/library/controller.js b/library/controller.js
index 5823287cc..ba97da93c 100644
--- a/library/controller.js
+++ b/library/controller.js
@@ -1,3 +1,4 @@
+/*
const urlUtil = require('url')
const extend = require('xtend')
const Dnode = require('dnode')
@@ -157,3 +158,24 @@ function initializeZeroClient() {
}
}
+
+*/
+const SWcontroller = require('./sw-controller')
+console.log('outside:open')
+const background = new SWcontroller({
+ fileName: 'sw-build.js',
+ registerOpts: {
+ scope: './',
+ }
+})
+
+background.startWorker()
+.then(registerdWorker => {
+ return background.sendMessage('connect')
+})
+.then((port) => {
+ debugger
+})
+.catch(err => {
+ console.error(`SW Controller: ${err}`)
+})