Book Image

Offline First Web Development

By : Daniel Sauble
Book Image

Offline First Web Development

By: Daniel Sauble

Overview of this book

When building mobile apps, it’s easy to forget about the moments when your users lack a good Internet connection. Put your phone in airplane mode, open a few popular apps, and you’ll quickly see how they handle being offline. From Twitter to Pinterest to Apple Maps, some apps might handle being offline better—but very few do it well. A poor offline experience will result in frustrated users who will abandon your app, or worse, turn to your competitor’s apps Expert or novice, this book will teach you everything you need to know about designing and building a rigorous offline app experience. By putting the offline experience first, you’ll have a solid foundation to build upon, avoiding the unnecessary stress and frustration of trying to retrofit offline capabilities into your finished app. This basic principle, designing for the worst-case scenario, could save you countless hours of wasted effort.
Table of Contents (17 chapters)
Offline First Web Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Clearing the cache


Every once in a while, you just want to clear everything in your local cache and start over. Thanks to replication, your data will remain secure; it'll just be wiped from your mobile device. If you sign in again, the data will be synced back to your device. The reason we don't do this when signing out is to speed up the rate at which your device resynchronizes with remote changes; though you can certainly clear it if you want. Clearing the cache is the nuclear option, rarely needed, but important to know how to do.

Google Chrome

To clear the cache in Chrome, do the following:

  1. Open Chrome.

  2. Open the History menu.

  3. At the bottom of the menu, click on Show Full History.

  4. Click on Clear browsing data….

  5. Check Cookies and other site and plug-in data.

  6. Check Cached images and files.

  7. Click on Clear browsing data.

Mozilla Firefox

To clear the cache in Firefox, do the following:

  1. Open Firefox.

  2. Open the History menu.

  3. Click on Clear Recent History….

  4. Check Cookies.

  5. Check Cache.

  6. Click on OK.

Apple Safari

To...