localbase
localbase copied to clipboard
A Firebase-Style Database ... Offline!
Good work on this library! Do you also have plans for reactivity? Something like (example from 'dexie' for the 'vue3' framework) ``` {{ friend.name }}, {{ item.age }} import {...
Is it possible to make the key auto incremented on each insert ?
Hi @dannyconnell, plz help check below error localbase version > "localbase": "^0.7.5", Code: ``` let lbaseDb = new Localbase('my_db') lbaseDb.collection('my_col').delete() ``` Error: ``` delete.js?fd25:64 Uncaught (in promise) TypeError: error.call is...
Not sure how much complete this is, as I haven't worked on it since January.
get function is returning first document in the collection instead of fetching all the documents. query:- `db.collection("app_bar").get()` output:- `{ "bot_name": "Tomato", "bot_icon": "data:image/png;base64,iVBOR", "bot_type": "External" }` Kindly help, what is...
Hello all, glad to come across this awesome library. I have used it for a group project. But the data only set on the first table when I set 2...
Can we have something similar to {merge: true} in firebase. Right now when we try to update none existent doc there will be error. In firebase we can do `localdb.collection(collection).doc(id).set(data,...
Is there some simple way to check if a specific key exists in indexedDB? Not enumerating all the available ones, but checking a specific key. Method returning true / false?