reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 201: Class 13 - Local Storage


Read: The Past, Present, and Future of Local Storage for Web Applications

Cookies

HTML5 sought to offer a standardized storage API implemented natively across all browsers without the need for 3rd party plugins

To check for HTML5 storage:


function supports_html5_storage(){
  try{
    return 'localStorage' in window && window ['localStorage'] !== null;
  } catch (e) {
    return false;
  }
}

JavaScript commands

Storage Limits

The future of local persistent storage may be IndextedDB, but at the time the article was written it had not been implemented yet.


Return to reading-notes Deployed Site

Return to reading-notes Mark Down