View on GitHub

reading-notes

CodeFellows Class Reading Notes

Local Storage

Cookies have three potentially serious downsides when used for persistent local storage:

Pre-HTML5, there was no good solution to local storage that was spacious and persistant that didn’t transmit to the server.

HTML5 sought to provide a standardized API, implemented natively and consistently in multiple browsers, without having to rely on third-party plugins.

HTML5 Storage is a way for web pages to store named key/value pairs locally, within the client web browser.


Home