DEV Community

Discussion on: Saving Data in JavaScript Without a Database

Collapse
 
meduzen profile image
Mehdi M.

If you don't need more then key-value storage, idb-keyval is light and has a very similar API to localStorage.

LocalStorage should be avoided unless very specific use case (see this comment).

Collapse
 
edgarbarrantes profile image
Edgar Barrantes

I'm not really sure of your point here, I'm recommending the use of IndexedDB not local storage.

Thread Thread
 
meduzen profile image
Mehdi M.

The LocalStorage comment is for the author of the article.