HTML5 Local Data Storage Demos
- Local Storage stores data with scope set to all sessions. Go to the Local Storage Example.
- Local Storage can handle multiple sessions of the same app running in different windows. Go to the Multi-Session Local Storage Example.
- Session Storage stores data with scope set to one session. Go to the Session Storage Example.
- Session Storage example, where the app continues to function when offline. Go to the Offline Session Storage Example.
- Web SQL uses SQLite for local storage in an SQL database. Go to the Web SQL Example. (depreciated)
- Indexed DB uses key-value database principles and is more established these days. Go to the Indexed DB Example