├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.yaml ├── app ├── index.html └── unsupported.html ├── package.json ├── server └── app.js ├── src ├── logout.js ├── script.js └── service-worker.js ├── styles └── style.css └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/app.yaml -------------------------------------------------------------------------------- /app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/app/index.html -------------------------------------------------------------------------------- /app/unsupported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/app/unsupported.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/package.json -------------------------------------------------------------------------------- /server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/server/app.js -------------------------------------------------------------------------------- /src/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/src/logout.js -------------------------------------------------------------------------------- /src/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/src/script.js -------------------------------------------------------------------------------- /src/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/src/service-worker.js -------------------------------------------------------------------------------- /styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/styles/style.css -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FirebaseExtended/firebase-auth-service-worker-sessions/HEAD/webpack.config.js --------------------------------------------------------------------------------