How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Sync localStorage into the Cloud

calendar_today October 25, 2019 person domain kvdb

The Web Storage API provides a mechanism for developers to persist key-value data associated with the current page’s origin. It’s a significant improvement to using client-side cookies to persist bits of data, typically allowing storage of up to 5 MB of data. The API is simple: localStorage.setItem(‘color’, ‘blue’) localStorage.getItem(‘color’) // ‘blue’ localStorage.removeItem(‘color’) A few…

open_in_new Read original post