Articles tagged “localStorage”
-
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. When it comes to web development you will always encounter things that sound too good to be true. Sometimes they are good, and all […]
-
Using client-side storage, today.
I recently tried to store locally the content of a form to make it resilient to inadvertent tab closing and crashes. Here is what I learned about the different ways to achieve client-side storage. Cookies can crumble Cookies are not a valid storage mean, as their size is limited to roughly 4000 characters (4KB) and […]