Using indexedDB
Using indexedDB
2024-02-01
Basic pattern
The basic pattern that IndexedDB encourages is the following:
1. Open a database.
2. Create an object store in the database.
3. Start a transaction and make a request to do some database operation,
like adding or retrieving data.
4. Wait for the operation to complete by listening to the right kind of DOM
event.
5. Do something with the results (which can be found on the request object).
With these big concepts under our belts, we can get to more concrete stuff.
1
<span>// Let us open our database</span>
<span>const</span> request <span>=</span> window<span>.</span>indexedDB<span>.</span><span>o
See that? Opening a database is just like any other operation — you have to
“request” it.
The open request doesn’t open the database or start the transaction right
away. The call to the open() function returns an IDBOpenDBRequest object
with a result (success) or error value that you handle as an event. Most other
asynchronous functions in IndexedDB do the same thing - return an IDBRequest
object with the result or error. The result for the open function is an instance of
an IDBDatabase.
The second parameter to the open method is the version of the database. The
version of the database determines the database schema — the object stores
in the database and their structure. If the database doesn’t already exist, it is
created by the open operation, then an onupgradeneeded event is triggered and
you create the database schema in the handler for this event. If the database does
exist but you are specifying an upgraded version number, an onupgradeneeded
event is triggered straight away, allowing you to provide an updated schema
in its handler. More on this later in Creating or updating the version of the
database below, and the IDBFactory.open reference page.
Warning: The version number is an unsigned long long number, which
means that it can be a very big integer. It also means that you can’t use a float,
otherwise it will be converted to the closest lower integer and the transaction may
not start, nor the upgradeneeded event trigger. So for example, don’t use 2.4
as a version number: const request = indexedDB.open("MyTestDatabase",
2.4); // don't do this, as the version will be rounded to 2
Generating handlers The first thing you’ll want to do with almost all of the
requests you generate is to add success and error handlers:
request<span>.</span><span>onerror</span> <span>=</span> <span>(</span><span>event</span><sp
<span>// Do something with request.errorCode!</span>
<span>}</span><span>;</span>
request<span>.</span><span>onsuccess</span> <span>=</span> <span>(</span><span>event</span><
<span>// Do something with request.result!</span>
<span>}</span><span>;</span>
Which of the two functions, onsuccess() or onerror(), gets called? If
everything succeeds, a success event (that is, a DOM event whose type property
is set to "success") is fired with request as its target. Once it is fired, the
onsuccess() function on request is triggered with the success event as its
argument. Otherwise, if there was any problem, an error event (that is, a DOM
event whose type property is set to "error") is fired at request. This triggers
the onerror() function with the error event as its argument.
The IndexedDB API is designed to minimize the need for error handling, so
2
you’re not likely to see many error events (at least, not once you’re used to the
API!). In the case of opening a database, however, there are some common
conditions that generate error events. The most likely problem is that the user
decided not to give your web app permission to create a database. One of the
main design goals of IndexedDB is to allow large amounts of data to be stored
for offline use. (To learn more about how much storage you can have for each
browser, see How much data can be stored? on the Browser storage quotas and
eviction criteria page.)
Obviously, browsers do not want to allow some advertising network or malicious
website to pollute your computer, so browsers used to prompt the user the first
time any given web app attempts to open an IndexedDB for storage. The user
could choose to allow or deny access. Also, IndexedDB storage in browsers’
privacy modes only lasts in-memory until the incognito session is closed.
Now, assuming that the user allowed your request to create a database, and you’ve
received a success event to trigger the success callback; What’s next? The request
here was generated with a call to indexedDB.open(), so request.result is an
instance of IDBDatabase, and you definitely want to save that for later. Your
code might look something like this:
<span>let</span> db<span>;</span>
<span>const</span> request <span>=</span> indexedDB<span>.</span><span>open</span><span>(</s
request<span>.</span><span>onerror</span> <span>=</span> <span>(</span><span>event</span><sp
console<span>.</span><span>error</span><span>(</span><span>"Why didn't you allow my web ap
<span>}</span><span>;</span>
request<span>.</span><span>onsuccess</span> <span>=</span> <span>(</span><span>event</span><
db <span>=</span> event<span>.</span>target<span>.</span>result<span>;</span>
<span>}</span><span>;</span>
Handling Errors As mentioned above, error events bubble. Error events are
targeted at the request that generated the error, then the event bubbles to the
transaction, and then finally to the database object. If you want to avoid adding
error handlers to every request, you can instead add a single error handler on
the database object, like so:
db<span>.</span><span>onerror</span> <span>=</span> <span>(</span><span>event</span><span>)<
<span>// Generic error handler for all errors targeted at this database's</span>
<span>// requests!</span>
console<span>.</span><span>error</span><span>(</span><span><span>`</span><span>Database er
<span>}</span><span>;</span>
One of the common possible errors when opening a database is VER_ERR. It
indicates that the version of the database stored on the disk is greater than the
version that you are trying to open. This is an error case that must always be
handled by the error handler.
3
Creating or updating the version of the database
When you create a new database or increase the version number of an existing
database (by specifying a higher version number than you did previously, when
Opening a database), the onupgradeneeded event will be triggered and an
IDBVersionChangeEvent object will be passed to any onversionchange event
handler set up on request.result (i.e., db in the example). In the handler for
the upgradeneeded event, you should create the object stores needed for this
version of the database:
<span>// This event is only implemented in recent browsers</span>
request<span>.</span><span>onupgradeneeded</span> <span>=</span> <span>(</span><span>event</
<span>// Save the IDBDatabase interface</span>
<span>const</span> db <span>=</span> event<span>.</span>target<span>.</span>result<span>;<
4
Key Generator
Key Path (keyPath) (autoIncrement) Description
No No This object store can
hold any kind of value,
even primitive values
like numbers and strings.
You must supply a
separate key argument
whenever you want to
add a new value.
Yes No This object store can
only hold JavaScript
objects. The objects
must have a property
with the same name as
the key path.
No Yes This object store can
hold any kind of value.
The key is generated for
you automatically, or
you can supply a
separate key argument if
you want to use a
specific key.
Yes Yes This object store can
only hold JavaScript
objects. Usually a key is
generated and the value
of the generated key is
stored in the object in a
property with the same
name as the key path.
However, if such a
property already exists,
the value of that
property is used as key
rather than generating a
new key.
You can also create indices on any object store, provided the object store holds
objects, not primitives. An index lets you look up the values stored in an object
store using the value of a property of the stored object, rather than the object’s
key.
Additionally, indexes have the ability to enforce simple constraints on the stored
5
data. By setting the unique flag when creating the index, the index ensures that
no two objects are stored with both having the same value for the index’s key
path. So, for example, if you have an object store which holds a set of people,
and you want to ensure that no two people have the same email address, you
can use an index with the unique flag set to enforce this.
That may sound confusing, but this simple example should illustrate the concepts.
First, we’ll define some customer data to use in our example:
<span>// This is what our customer data looks like.</span>
<span>const</span> customerData <span>=</span> <span>[</span>
<span>{</span> <span>ssn</span><span>:</span> <span>"444-44-4444"</span><span>,</span> <sp
<span>{</span> <span>ssn</span><span>:</span> <span>"555-55-5555"</span><span>,</span> <sp
<span>]</span><span>;</span>
Of course, you wouldn’t use someone’s social security number as the primary
key to a customer table because not everyone has a social security number,
and you would store their birth date instead of their age, but let’s ignore those
unfortunate choices for the sake of convenience and move along.
Now let’s look at creating an IndexedDB to store our data:
<span>const</span> dbName <span>=</span> <span>"the_name"</span><span>;</span>
<span>// Use transaction oncomplete to make sure the objectStore creation is</span>
<span>// finished before adding data into it.</span>
objectStore<span>.</span>transaction<span>.</span><span>oncomplete</span> <span>=</span> <
6
<span>// Store values in the newly created objectStore.</span>
<span>const</span> customerObjectStore <span>=</span> db
<span>.</span><span>transaction</span><span>(</span><span>"customers"</span><span>,</s
<span>.</span><span>objectStore</span><span>(</span><span>"customers"</span><span>)</s
customerData<span>.</span><span>forEach</span><span>(</span><span>(</span><span>customer
customerObjectStore<span>.</span><span>add</span><span>(</span>customer<span>)</span><
<span>}</span><span>)</span><span>;</span>
<span>}</span><span>;</span>
<span>}</span><span>;</span>
As indicated previously, onupgradeneeded is the only place where you can alter
the structure of the database. In it, you can create and delete object stores and
build and remove indices.
Object stores are created with a single call to createObjectStore(). The
method takes a name of the store, and a parameter object. Even though the
parameter object is optional, it is very important, because it lets you define
important optional properties and refine the type of object store you want to
create. In our case, we’ve asked for an object store named “customers” and
defined a keyPath, which is the property that makes an individual object in
the store unique. That property in this example is “ssn” since a social security
number is guaranteed to be unique. “ssn” must be present on every object that
is stored in the objectStore.
We’ve also asked for an index named “name” that looks at the name property
of the stored objects. As with createObjectStore(), createIndex() takes an
optional options object that refines the type of index that you want to create.
Adding objects that don’t have a name property still succeeds, but the objects
won’t appear in the “name” index.
We can now retrieve the stored customer objects using their ssn from the object
store directly, or using their name by using the index. To learn how this is done,
see the section on using an index.
7
<span>// Open the indexedDB.</span>
<span>const</span> request <span>=</span> indexedDB<span>.</span><span>open</span><span>(</s
<span>// Create another object store called "names" with the autoIncrement flag set as tru
<span>const</span> objStore <span>=</span> db<span>.</span><span>createObjectStore</span><
<span>// Because the "names" object store has the key generator, the key for the name valu
<span>// The added records would be like:</span>
<span>// key : 1 => value : "Bill"</span>
<span>// key : 2 => value : "Donna"</span>
customerData<span>.</span><span>forEach</span><span>(</span><span>(</span><span>customer</
objStore<span>.</span><span>add</span><span>(</span>customer<span>.</span>name<span>)</s
<span>}</span><span>)</span><span>;</span>
<span>}</span><span>;</span>
For more details about the key generator, please see “W3C Key Generators”.
8
guaranteed to have been flushed to disk. In Firefox 40+ the complete event
is fired after the OS has been told to write the data but potentially before
that data has actually been flushed to disk. The complete event may thus be
delivered quicker than before, however, there exists a small chance that the
entire transaction will be lost if the OS crashes or there is a loss of system
power before the data is flushed to disk. Since such catastrophic events are
rare most consumers should not need to concern themselves further. If you
must ensure durability for some reason (e.g. you’re storing critical data that
cannot be recomputed later) you can force a transaction to flush to disk before
delivering the complete event by creating a transaction using the experimental
(non-standard) readwriteflush mode (see IDBDatabase.transaction).
You can speed up data access by using the right scope and mode in the transaction.
Here are a couple of tips:
• When defining the scope, specify only the object stores you need. This way,
you can run multiple transactions with non-overlapping scopes concurrently.
• Only specify a readwrite transaction mode when necessary. You can
concurrently run multiple readonly transactions with overlapping scopes,
but you can have only one readwrite transaction for an object store.
To learn more, see the definition for transaction in the IndexedDB key
characteristics and basic terminology article.
9
then it will become inactive, and so on. As long as there are pending requests
the transaction remains active. Transaction lifetimes are really very simple but
it might take a little time to get used to. A few more examples will help, too.
If you start seeing TRANSACTION_INACTIVE_ERR error codes then you’ve messed
something up.
Transactions can receive DOM events of three different types: error, abort,
and complete. We’ve talked about the way that error events bubble, so a
transaction receives error events from any requests that are generated from it.
A more subtle point here is that the default behavior of an error is to abort the
transaction in which it occurred. Unless you handle the error by first calling
stopPropagation() on the error event then doing something else, the entire
transaction is rolled back. This design forces you to think about and handle
errors, but you can always add a catchall error handler to the database if fine-
grained error handling is too cumbersome. If you don’t handle an error event or
if you call abort() on the transaction, then the transaction is rolled back and
an abort event is fired on the transaction. Otherwise, after all pending requests
have completed, you’ll get a complete event. If you’re doing lots of database
operations, then tracking the transaction rather than individual requests can
certainly aid your sanity.
Now that you have a transaction, you’ll need to get the object store from it.
Transactions only let you have an object store that you specified when creating
the transaction. Then you can add all the data you need.
<span>// Do something when all the data is added to the database.</span>
transaction<span>.</span><span>oncomplete</span> <span>=</span> <span>(</span><span>event</s
console<span>.</span><span>log</span><span>(</span><span>"All done!"</span><span>)</span><
<span>}</span><span>;</span>
10
Updating an entry in the database section.
11
Updating an entry in the database
Now we’ve retrieved some data, updating it and inserting it back into the
IndexedDB is pretty simple. Let’s update the previous example somewhat:
<span>const</span> objectStore <span>=</span> db
<span>.</span><span>transaction</span><span>(</span><span>[</span><span>"customers"</span>
<span>.</span><span>objectStore</span><span>(</span><span>"customers"</span><span>)</span>
<span>const</span> request <span>=</span> objectStore<span>.</span><span>get</span><span>(</
request<span>.</span><span>onerror</span> <span>=</span> <span>(</span><span>event</span><sp
<span>// Handle errors!</span>
<span>}</span><span>;</span>
request<span>.</span><span>onsuccess</span> <span>=</span> <span>(</span><span>event</span><
<span>// Get the old value that we want to update</span>
<span>const</span> data <span>=</span> event<span>.</span>target<span>.</span>result<span>
<span>// update the value(s) in the object that you want to change</span>
data<span>.</span>age <span>=</span> <span>42</span><span>;</span>
Using a cursor
Using get() requires that you know which key you want to retrieve. If you want
to step through all the values in your object store, then you can use a cursor.
Here’s what it looks like:
<span>const</span> objectStore <span>=</span> db<span>.</span><span>transaction</span><span>
objectStore<span>.</span><span>openCursor</span><span>(</span><span>)</span><span>.</span><s
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
12
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
console<span>.</span><span>log</span><span>(</span><span><span>`</span><span>Name for SS
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span> <span>else</span> <span>{</span>
console<span>.</span><span>log</span><span>(</span><span>"No more entries!"</span><span>
<span>}</span>
<span>}</span><span>;</span>
The openCursor() function takes several arguments. First, you can limit the
range of items that are retrieved by using a key range object that we’ll get to in
a minute. Second, you can specify the direction that you want to iterate. In the
above example, we’re iterating over all objects in ascending order. The success
callback for cursors is a little special. The cursor object itself is the result of
the request (above we’re using the shorthand, so it’s event.target.result).
Then the actual key and value can be found on the key and value properties of
the cursor object. If you want to keep going, then you have to call continue()
on the cursor. When you’ve reached the end of the data (or if there were no
entries that matched your openCursor() request) you still get a success callback,
but the result property is undefined.
One common pattern with cursors is to retrieve all objects in an object store
and add them to an array, like this:
<span>const</span> customers <span>=</span> <span>[</span><span>]</span><span>;</span>
objectStore<span>.</span><span>openCursor</span><span>(</span><span>)</span><span>.</span><s
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
customers<span>.</span><span>push</span><span>(</span>cursor<span>.</span>value<span>)</
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span> <span>else</span> <span>{</span>
console<span>.</span><span>log</span><span>(</span><span><span>`</span><span>Got all cus
<span>}</span>
<span>}</span><span>;</span>
Note: Alternatively, you can use getAll() to handle this case (and
getAllKeys()). The following code does precisely the same thing as above:
objectStore<span>.</span><span>getAll</span><span>(</span><span>)</span><span>.</span><span>
console<span>.</span><span>log</span><span>(</span><span><span>`</span><span>Got all custo
<span>}</span><span>;</span>
There is a performance cost associated with looking at the value property of a
cursor, because the object is created lazily. When you use getAll() for example,
the browser must create all the objects at once. If you’re just interested in
looking at each of the keys, for instance, it is much more efficient to use a cursor
than to use getAll(). If you’re trying to get an array of all the objects in an
object store, though, use getAll().
13
Using an index
Storing customer data using the SSN as a key is logical since the SSN uniquely
identifies an individual. (Whether this is a good idea for privacy is a different
question, and outside the scope of this article.) If you need to look up a customer
by name, however, you’ll need to iterate over every SSN in the database until
you find the right one. Searching in this fashion would be very slow, so instead
you can use an index.
<span>// First, make sure you created index in request.onupgradeneeded:</span>
<span>// objectStore.createIndex("name", "name");</span>
<span>// Otherwise you will get DOMException.</span>
index<span>.</span><span>get</span><span>(</span><span>"Donna"</span><span>)</span><span>.</
console<span>.</span><span>log</span><span>(</span><span><span>`</span><span>Donna's SSN i
<span>}</span><span>;</span>
The “name” index isn’t unique, so there could be more than one entry with the
name set to "Donna". In that case you always get the one with the lowest key
value.
If you need to access all the entries with a given name you can use a cursor. You
can open two different types of cursors on indexes. A normal cursor maps the
index property to the object in the object store. A key cursor maps the index
property to the key used to store the object in the object store. The differences
are illustrated here:
<span>// Using a normal cursor to grab whole customer record objects</span>
index<span>.</span><span>openCursor</span><span>(</span><span>)</span><span>.</span><span>on
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
<span>// cursor.key is a name, like "Bill", and cursor.value is the whole object.</span>
console<span>.</span><span>log</span><span>(</span>
<span><span>`</span><span>Name: </span><span><span>${</span>cursor<span>.</span>key<sp
<span>)</span><span>;</span>
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span>
<span>}</span><span>;</span>
14
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span>
<span>}</span><span>;</span>
<span>// Match anything between "Bill" and "Donna", but not including "Donna"</span>
<span>const</span> boundKeyRange <span>=</span> IDBKeyRange<span>.</span><span>bound</span><
<span>// To use one of the key ranges, pass it in as the first argument of openCursor()/open
index<span>.</span><span>openCursor</span><span>(</span>boundKeyRange<span>)</span><span>.</
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
<span>// Do something with the matches.</span>
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span>
<span>}</span><span>;</span>
Sometimes you may want to iterate in descending order rather than in ascending
order (the default direction for all cursors). Switching direction is accomplished
by passing prev to the openCursor() function as the second argument:
objectStore<span>.</span><span>openCursor</span><span>(</span>boundKeyRange<span>,</span> <s
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
<span>// Do something with the entries.</span>
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
15
<span>}</span>
<span>}</span><span>;</span>
If you just want to specify a change of direction but not constrain the results
shown, you can just pass in null as the first argument:
objectStore<span>.</span><span>openCursor</span><span>(</span><span>null</span><span>,</span
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
<span>// Do something with the entries.</span>
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span>
<span>}</span><span>;</span>
Since the “name” index isn’t unique, there might be multiple entries where name
is the same. Note that such a situation cannot occur with object stores since
the key must always be unique. If you wish to filter out duplicates during cursor
iteration over indexes, you can pass nextunique (or prevunique if you’re going
backwards) as the direction parameter. When nextunique or prevunique is
used, the entry with the lowest key is always the one returned.
index<span>.</span><span>openKeyCursor</span><span>(</span><span>null</span><span>,</span> <
<span>const</span> cursor <span>=</span> event<span>.</span>target<span>.</span>result<spa
<span>if</span> <span>(</span>cursor<span>)</span> <span>{</span>
<span>// Do something with the entries.</span>
cursor<span>.</span><span>continue</span><span>(</span><span>)</span><span>;</span>
<span>}</span>
<span>}</span><span>;</span>
Please see “IDBCursor Constants” for the valid direction arguments.
16
openReq<span>.</span><span>onupgradeneeded</span> <span>=</span> <span>(</span><span>event</
<span>// All other databases have been closed. Set everything up.</span>
db<span>.</span><span>createObjectStore</span><span>(</span><span>/* ... */</span><span>)<
<span>useDatabase</span><span>(</span>db<span>)</span><span>;</span>
<span>}</span><span>;</span>
Security
IndexedDB uses the same-origin principle, which means that it ties the store
to the origin of the site that creates it (typically, this is the site domain or
subdomain), so it cannot be accessed by any other origin.
Third party window content (e.g. <iframe> content) cannot access IndexedDB if
the browser is set to never accept third party cookies (see Firefox bug 1147821).
17
the same as if IDBTransaction.abort() is called on each transaction.
2. Once all of the transactions have completed, the database connection is
closed.
3. Finally, the IDBDatabase object representing the database connection
receives a close event. You can use the IDBDatabase.onclose event
handler to listen for these events, so that you know when a database is
unexpectedly closed.
The behavior described above is new, and is only available as of the following
browser releases: Firefox 50, Google Chrome 31 (approximately).
Prior to these browser versions, the transactions are aborted silently, and no
close event is fired, so there is no way to detect an unexpected database closure.
Since the user can exit the browser at any time, this means that you cannot rely
upon any particular transaction to complete, and on older browsers, you don’t
even get told when they don’t complete. There are several implications of this
behavior.
First, you should take care to always leave your database in a consistent state at
the end of every transaction. For example, suppose that you are using IndexedDB
to store a list of items that you allow the user to edit. You save the list after the
edit by clearing the object store and then writing out the new list. If you clear
the object store in one transaction and write the new list in another transaction,
there is a danger that the browser will close after the clear but before the write,
leaving you with an empty database. To avoid this, you should combine the
clear and the write into a single transaction.
Second, you should never tie database transactions to unload events. If the
unload event is triggered by the browser closing, any transactions created in the
unload event handler will never complete. An intuitive approach to maintaining
some information across browser sessions is to read it from the database when
the browser (or a particular page) is opened, update it as the user interacts with
the browser, and then save it to the database when the browser (or page) closes.
However, this will not work. The database transactions will be created in the
unload event handler, but because they are asynchronous they will be aborted
before they can execute.
In fact, there is no way to guarantee that IndexedDB transactions will complete,
even with normal browser shutdown. See Firefox bug 870645. As a workaround
for this normal shutdown notification, you might track your transactions and
add a beforeunload event to warn the user if any transactions have not yet
completed at the time of unloading.
At least with the addition of the abort notifications and IDBDatabase.onclose,
you can know when this has happened.
18
Full IndexedDB example
We have a complete example using the IndexedDB API. The example uses
IndexedDB to store and retrieve publications.
• Try the example
• See the source code
See also
Further reading for you to find out more information if desired.
Reference
Tutorials and guides
Libraries
• localForage: A Polyfill providing a simple name:value syntax for client-side
data storage, which uses IndexedDB in the background, but falls back
to Web SQL (deprecated) and then localStorage in browsers that don’t
support IndexedDB.
• Dexie.js: A wrapper for IndexedDB that allows much faster code
development via nice, simple syntax.
• JsStore: A simple and advanced IndexedDB wrapper having SQL like
syntax.
• MiniMongo: A client-side in-memory MongoDB backed by localstorage
with server sync over http. MiniMongo is used by MeteorJS.
• PouchDB: A client-side implementation of CouchDB in the browser using
IndexedDB
• IDB: A tiny library that mostly mirrors the IndexedDB API but with
small usability improvements.
• idb-keyval: A super-simple-small (~600B) promise-based keyval store
implemented with IndexedDB
• $mol_db: Tiny (~1.3kB) TypeScript facade with promise-based API and
automatic migrations.
• RxDB: A NoSQL client side database that can be used on top of IndexedDB.
Supports indexes, compression and replication. Also adds cross tab
functionality and observability to IndexedDB.
19