https://github.com/engineerapart/idb-inmemory
An in-memory database that mimics the idb api (jakearchibald/idb)
https://github.com/engineerapart/idb-inmemory
Last synced: 8 months ago
JSON representation
An in-memory database that mimics the idb api (jakearchibald/idb)
- Host: GitHub
- URL: https://github.com/engineerapart/idb-inmemory
- Owner: engineerapart
- License: mit
- Created: 2020-05-08T16:41:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-08T16:44:37.000Z (about 6 years ago)
- Last Synced: 2024-12-27T09:13:04.557Z (over 1 year ago)
- Language: TypeScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# idb-inmemory
An in-memory database that mimics the idb api [jakearchibald/idb](https://github.com/jakearchibald/idb#typescript)
## Note
I started this as an approach for a project but decided to go another way. Committing this for posterity and indeed I do actually hope to come back and finish it. It would be ideal to support browsers that don't implement indexedDB, and browsers that block IDB in private browsing (e.g. Firefox as of May 2020).
In the meantime, take a look at https://github.com/dumbmatter/fakeIndexedDB which is an in-memory version of indexedDB (duplicating that API, not the `idb` package's API) and may serve your needs.