blog

  • Home
  • blog
  • An Overview of Client-Side Storage

An Overview of Client-Side Storage

Ire Aderinokun:

There are currently four active methods for storing data on the client side.

  1. Cookies (old school, still useful because they are sent with server requests)
  2. Local Storage (very easy to use)
  3. Session Storage (exactly the same, only clears when the tab is closed)
  4. IndexedDB (quite complex, quite powerful)

An Overview of Client-Side Storage is a post from CSS-Tricks

LEAVE A REPLY