var db = new Dexie(app.settings.unpublishedBooksDb);
db.version(1).stores({
friends: "++id,name,shoeSize"
});
db.open();
db.close();
I have a precreated indexedDB database using the code above, and then on another view in the application, I…
In my application I want to use Dixie.js to read/write data into IndexDB from my Webworker & Dixie Observable to listen event from main thread (React functional component which uses hook) instead of worker postMessage.
Dixie.js documentation is very…