Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 2.91 KB

local-storage.md

File metadata and controls

38 lines (32 loc) · 2.91 KB

Bookmarks tagged [local-storage]

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...


https://github.com/pamelafox/lscache

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


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.


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...


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 ...