Engine for redux-storage that uses IndexedDB as the underlying storage backend. Version 1.0.0 is the latest and final release; the package is no longer maintained. It provides a simple API to create an engine with a custom store name. This library is tied to the deprecated redux-storage ecosystem and should not be used in new projects. Alternatives include redux-persist with indexeddb adapter.
npm install redux-storage-engine-indexed-dbNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to create the IndexedDB engine, attach it as redux-storage middleware, and load/save state.
Migrate to redux-persist with its indexeddb adapter.
Always provide a non-empty string for store name.
Be aware that changing the state shape may require manual migration or clearing IndexedDB.
Use bundler that handles CommonJS; consider alternative if ESM required.
Use 'import createEngine from 'redux-storage-engine-indexed-db'' (no curly braces).
Run 'npm install redux-storage'.
Pass a non-empty string (e.g., 'myStore').
Ensure redux-storage middleware is applied and engine is created before use.