/reactiveconf-service-worker

Demo application for ReactiveConf. It is a simple application for workshop "Service Workers at Your Service".

Primary LanguageJavaScriptMIT LicenseMIT

Demo app for Service Workers

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.

How to run

Initialization

  1. npm install -g yarn
  2. yarn
  3. cd client
  4. yarn
  5. cd ..

Main way of running example

  1. 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.

Running minified build

  1. cd client
  2. yarn build
  3. cd ..
  4. 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.