1
HTML/CSSAdvanced#storage#pwa
A low-level, transactional, client-side database in the browser for storing large amounts of structured data (including files/blobs), supporting indexes and queries, unlike the simple key-value storage of localStorage.
const request = indexedDB.open('MyDB', 1);
request.onupgradeneeded = (e) => {
const db = e.target.result;
db.createObjectStore('notes', { keyPath: 'id' });
};