Application is intended as demo or example for Service Workers. It is mainly created for ReactiveConf. User can try ServiceWorker initialization, caching strategies and push notifications via FCM.
Whole application is created using create-react-app with small changes, so everyone using react should be able to understand basic concepts.
npm install -g yarn
yarn
cd client
yarn
cd ..
yarn dev
It will start server on port 5000 and client on port 3000. All requests for data are handled trough webpack proxy to server part. You can try your application on page http://localhost:3000 }. It should start on its own, after running application.
cd client
yarn build
cd ..
yarn server
It will start only server part. You can try your application on page http://localhost:5000
For push notification you need your own serviceAccountKey. In this example it is intentionally broken.