• This article documents the types of objects used by IndexedDB, as well as the methods of the asynchronous API (the synchronous API was removed from spec).
  • https://www.w3.org/TR/2023/WD-IndexedDB-3-20230808/. Test Suite: https://github.com/web-platform-tests/wpt/tree/master/IndexedDB.
  • IndexedDB is a database, indicated by the “DB”, that allows you to store large quantities of structured data on the web.
  • The native interface to IndexedDB, described in the specification https://www.w3.org/TR/IndexedDB, is event-based.
  • This article describes the key characteristics of IndexedDB, and introduces some essential terminology relevant to understanding the IndexedDB API.
  • Before we start I have been working with IndexedDB for more than 3 years. When I just started, I thought, huh, it's similar to MongoDB, easy-peasy.
  • IndexedDB is one of the storage capabilities introduced into browsers over the years. Here's an introduction to IndexedDB, the Database of the Web supported...
  • This article will teach you about IndexedDB with a small tutorial, and compare IndexedDB to some of the other options available.
  • Well-tested, low-level wrapper around the IndexedDB API. It can sync, too. See test.js for examples. Install. $ yarn add azer/indexeddb # or npm i azer/indexeddb.
    • Issues:
      1
  • The easiest way to use IndexedDB. A lightweight, minimalistic wrapper that provides a straightforward API for developers using IndexedDB.