Skip to content

Files

Latest commit

5cbf1d2 · Sep 18, 2014

History

History
11 lines (7 loc) · 745 Bytes

File metadata and controls

11 lines (7 loc) · 745 Bytes

Offline todo with IndexedDB and synchronization

We will now enhance our simple offline-first to-do application by hooking it up to a server so that, when it has an internet connection, it can synchronize its data. Here is what the app will do:

  • everything that the previous app did, on as many browsers;
  • synchronizes its todos with the server, deleting todos on the server that have been deleted locally, added todos on the server that have been created locally.
  • works across different browsers on different devices, different browsers on the same device, browsers in private browsing mode and across different open tabs.

← Back to success | Continue to architecture