local-storage.md

July 15, 2021 · View on GitHub

Bookmarks tagged [local-storage]

www.codever.land/bookmarks/t/local-storage

Client-side storage - Learn web development | MDN

https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Client-side_web_APIs/Client-side_storage

Modern web browsers support a number of ways for web sites to store data on the user's computer — with the user's permission — then retrieve it when necessary. This lets you persist data for long-term...


pamelafox/lscache home page

https://github.com/pamelafox/lscache

A localStorage-based memcache-inspired client-side caching library.


There is no simple solution for local storage - Mozilla Hacks

https://hacks.mozilla.org/2012/03/there-is-no-simple-solution-for-local-storage/

TL;DR: we have to stop advocating localStorage as a great opportunity for storing data as it performs badly. Sadly enough the alternatives are not nearly as supported or simple to implement.


Storing data in the browser with the HTML5 localStorage API

https://ultimatecourses.com/blog/storing-data-in-the-browser-with-the-html5-local-storage-api

HTML5 localStorage is an HTML5 API that allows us to save string data in the browser. localStorage is part of the web storage specification, it also has a sister called sessionStorage which is slightl...


Working with quota on mobile browsers

https://www.html5rocks.com/en/tutorials/offline/quota-research/

As web apps get richer and richer, more and more developers are using browser-side storage. However, there hasn't been a major study comparing the limitations of the various storage mechanisms. It is ...