You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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);