Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 1 KB

06-quiz-offline-first.md

File metadata and controls

27 lines (18 loc) · 1 KB

02.06: QUIZ: WHAT ARE WAYS TO BE OFFLINE FIRST?

Which of these are offline first techniques?

  • Deliver the page's header and content from a cache on the device, then attempt to fetch updated content from the network.

  • Deliver the page's header from a cache, then attempt to fetch the content from the network.

  • Attempt to fetch the page from the network, and if that fails, show cached content.

  • Attempt to fetch the page from the network, if that fails, show an error page from a cache.

ANSWER
  • Deliver the page's header and content from a cache on the device, then attempt to fetch updated content from the network.
  • Deliver the page's header from a cache, then attempt to fetch the content from the network.

If we can get something on the screen without waiting for the network, that is `offline first`.


Next: Quiz: Installing the Demo App