Skip to content

PWA Background Sync

Aakash Goplani edited this page Mar 6, 2022 · 3 revisions

When network is online

graph TD;
   A(Request Initiated) --> B(Service Worker is Ready);
   B --> C(Write data in indexedDB);
   C --> D(Read data from indexedDB);
   D --> E(Make fetch Request);
   E --> F(Service Worker deletes data from indexedDB);
   F --> G(Done);
Loading

online


When network is offline

offline

Clone this wiki locally