├── .gitignore ├── HiddenCam ├── .DS_Store ├── client │ ├── app.webmanifest │ ├── client.js │ ├── icon.png │ ├── index.html │ ├── sw.js │ └── worker.js ├── dashboard │ ├── dashboard.js │ └── index.html ├── package-lock.json ├── package.json ├── readme.md └── server.js ├── background-final ├── .DS_Store ├── broadcast.js ├── package-lock.json ├── package.json ├── public │ ├── .DS_Store │ ├── images │ │ ├── action_no.png │ │ ├── action_yes.png │ │ ├── badge.png │ │ └── icon.png │ ├── index.html │ ├── media │ │ ├── audio.mp3 │ │ ├── thumb.png │ │ └── video.mp4 │ ├── message.txt │ ├── scripts │ │ ├── background.js │ │ ├── log.js │ │ ├── media.js │ │ └── push.js │ ├── styles.css │ └── sw.js ├── server.js └── users.db ├── background-initial ├── .DS_Store ├── broadcast.js ├── package-lock.json ├── package.json ├── public │ ├── .DS_Store │ ├── images │ │ ├── action_no.png │ │ ├── action_yes.png │ │ ├── badge.png │ │ └── icon.png │ ├── index.html │ ├── media │ │ ├── audio.mp3 │ │ ├── thumb.png │ │ └── video.mp4 │ ├── scripts │ │ ├── background.js │ │ ├── log.js │ │ ├── media.js │ │ └── push.js │ └── styles.css ├── server.js └── users.db ├── readme.md └── slides.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | /.DS_Store 2 | node_modules -------------------------------------------------------------------------------- /HiddenCam/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/.DS_Store -------------------------------------------------------------------------------- /HiddenCam/client/app.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/app.webmanifest -------------------------------------------------------------------------------- /HiddenCam/client/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/client.js -------------------------------------------------------------------------------- /HiddenCam/client/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/icon.png -------------------------------------------------------------------------------- /HiddenCam/client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/index.html -------------------------------------------------------------------------------- /HiddenCam/client/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/sw.js -------------------------------------------------------------------------------- /HiddenCam/client/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/client/worker.js -------------------------------------------------------------------------------- /HiddenCam/dashboard/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/dashboard/dashboard.js -------------------------------------------------------------------------------- /HiddenCam/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/dashboard/index.html -------------------------------------------------------------------------------- /HiddenCam/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/package-lock.json -------------------------------------------------------------------------------- /HiddenCam/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/package.json -------------------------------------------------------------------------------- /HiddenCam/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/readme.md -------------------------------------------------------------------------------- /HiddenCam/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/HiddenCam/server.js -------------------------------------------------------------------------------- /background-final/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/.DS_Store -------------------------------------------------------------------------------- /background-final/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/broadcast.js -------------------------------------------------------------------------------- /background-final/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/package-lock.json -------------------------------------------------------------------------------- /background-final/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/package.json -------------------------------------------------------------------------------- /background-final/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/.DS_Store -------------------------------------------------------------------------------- /background-final/public/images/action_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/images/action_no.png -------------------------------------------------------------------------------- /background-final/public/images/action_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/images/action_yes.png -------------------------------------------------------------------------------- /background-final/public/images/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/images/badge.png -------------------------------------------------------------------------------- /background-final/public/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/images/icon.png -------------------------------------------------------------------------------- /background-final/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/index.html -------------------------------------------------------------------------------- /background-final/public/media/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/media/audio.mp3 -------------------------------------------------------------------------------- /background-final/public/media/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/media/thumb.png -------------------------------------------------------------------------------- /background-final/public/media/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/media/video.mp4 -------------------------------------------------------------------------------- /background-final/public/message.txt: -------------------------------------------------------------------------------- 1 | {"text":"hello from Frontend Masters!"} -------------------------------------------------------------------------------- /background-final/public/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/scripts/background.js -------------------------------------------------------------------------------- /background-final/public/scripts/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/scripts/log.js -------------------------------------------------------------------------------- /background-final/public/scripts/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/scripts/media.js -------------------------------------------------------------------------------- /background-final/public/scripts/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/scripts/push.js -------------------------------------------------------------------------------- /background-final/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/styles.css -------------------------------------------------------------------------------- /background-final/public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/public/sw.js -------------------------------------------------------------------------------- /background-final/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-final/server.js -------------------------------------------------------------------------------- /background-final/users.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /background-initial/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/.DS_Store -------------------------------------------------------------------------------- /background-initial/broadcast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/broadcast.js -------------------------------------------------------------------------------- /background-initial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/package-lock.json -------------------------------------------------------------------------------- /background-initial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/package.json -------------------------------------------------------------------------------- /background-initial/public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/.DS_Store -------------------------------------------------------------------------------- /background-initial/public/images/action_no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/images/action_no.png -------------------------------------------------------------------------------- /background-initial/public/images/action_yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/images/action_yes.png -------------------------------------------------------------------------------- /background-initial/public/images/badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/images/badge.png -------------------------------------------------------------------------------- /background-initial/public/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/images/icon.png -------------------------------------------------------------------------------- /background-initial/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/index.html -------------------------------------------------------------------------------- /background-initial/public/media/audio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/media/audio.mp3 -------------------------------------------------------------------------------- /background-initial/public/media/thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/media/thumb.png -------------------------------------------------------------------------------- /background-initial/public/media/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/media/video.mp4 -------------------------------------------------------------------------------- /background-initial/public/scripts/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/scripts/background.js -------------------------------------------------------------------------------- /background-initial/public/scripts/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/scripts/log.js -------------------------------------------------------------------------------- /background-initial/public/scripts/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/scripts/media.js -------------------------------------------------------------------------------- /background-initial/public/scripts/push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/scripts/push.js -------------------------------------------------------------------------------- /background-initial/public/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/public/styles.css -------------------------------------------------------------------------------- /background-initial/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/background-initial/server.js -------------------------------------------------------------------------------- /background-initial/users.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/readme.md -------------------------------------------------------------------------------- /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firtman/javascript-background/HEAD/slides.pdf --------------------------------------------------------------------------------