September 2024
Beginner to intermediate
985 pages
35h 37m
English
The Indexed Database API or IndexedDB API (www.w3.org/TR/IndexedDB/) is a database that resides in the browser or is implemented and made available by the browser. Before we show you specifically how to work with the IndexedDB API, we’ll explain a few basic concepts about databases in general and the concepts used with IndexedDB in particular.
In principle, this (client-side) database works just like a server-side database; that is, you can create records in it, read records, update them, or delete them again.
Four key operations are often discussed in concert: create, read, update, and delete (CRUD).
IndexedDB is a nonrelational database, also referred to as a NoSQL database. On the other ...
Read now
Unlock full access