-
When Sugarizer is launched with Firefox in private mode, the message `FATAL ERROR: indexedDB not supported, could be related to use of private mode` appears several time and some actions do nothing or…
-
We originally wanted to use JavaFX's WebView as our web page host on the desktop but unfortunately it doesn't support WebSQL or IndexedDB. PouchDB actually had a polyfill for that but unfortunately we…
-
Decide on what database solution to use:
### Client-Side:
- [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API/Using_IndexedDB)
- [Web SQL](https://www.w3.org/TR/webdatabase/…
-
It'd be interesting if the browser version of this package used the origin-private file-system APIs rather than IndexedDB. I think that's become kinda the "official" way to run sqlite in the browser n…
-
Safari 6.2 supports indexeddb, but does a poor job, so all of our tests fail. I think the solution is to mark the tests as failing, and expect that newer versions of Safari will pass more of them.
-
Redux load all the info in memory, so When working with big datasets, it can be really a killer. Ideally we would use IndexedDB to store and search instead of loading in memory and use filter() and ma…
-
... which are used in the official W3C [IndexedDB](http://www.w3.org/TR/IndexedDB/#widl-IDBCursor-continue-void-any-key) spec (supported by Chrome and Firefox):
```
cursor.continue();
store.delete(ke…
-
Currently synchronous localstorage is used, which is fine for most things apart from [saving history](https://github.com/openstreetmap/iD/blob/39c82af15891bc29f89502ed60a3498895a1353e/modules/core/his…
-
Hi, i find that i need to have a database on wasm and i think i'm not the first nor the last. I'm currently working in the browser and it's all great with bdk but it's very cumbersome for the (future)…
-
When [creating a key](https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/generateKey) in WebCrypto, the `extractable` parameter/property indicates whether a key should be treated as opaque.…