├── .gitignore ├── README.md ├── doc-imgs └── internals.png ├── index.html ├── logging.js ├── package.json ├── reset ├── index.html └── sw.js ├── script.js ├── serviceworker-cache-polyfill.js ├── style.css ├── sw.js └── trollface.svg /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/README.md -------------------------------------------------------------------------------- /doc-imgs/internals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/doc-imgs/internals.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/index.html -------------------------------------------------------------------------------- /logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/logging.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/package.json -------------------------------------------------------------------------------- /reset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/reset/index.html -------------------------------------------------------------------------------- /reset/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/reset/sw.js -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/script.js -------------------------------------------------------------------------------- /serviceworker-cache-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/serviceworker-cache-polyfill.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/style.css -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/sw.js -------------------------------------------------------------------------------- /trollface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/simple-serviceworker-tutorial/HEAD/trollface.svg --------------------------------------------------------------------------------