A simple document store powered by LevelDB
LoreDB is in alpha preview. It is currently implemented at a conceptual level with a minimum set of features to prove out the project.
npm i loredb@latest
LoreDB is a wrapper around LevelDB, a high performance local database. Lore adds schemas and organized querying to LevelDB, while maintaining the high speed and low disk usage of LevelDB. Lore introduces index key management by selecting which fields in your schema to use as keys into LevelDB, as well as managing auto-incrementing primary keys. You can specify the order of the keys to optimize lookups based on the most specific value your application will be searching for.
TODO