MoltenDb Web
May 2, 2026 ยท View on GitHub
๐ The Embedded Database for the Modern Web
This is the monorepo for MoltenDb Web โ a high-performance Rust engine compiled to WASM with persistent storage via OPFS.
Use it as a full-featured embedded database or as a persistent state manager โ your app's data survives page reloads, browser crashes, and unexpected connection loss automatically.
Demos
๐ฌ Interactive Query Demo (Core & Query packages)
Explore the full MoltenDb query builder in a live, zero-setup environment:
- โก StackBlitz: Open Interactive Demo
This demo lets you test the full query builder API โ get(), set(), update(), delete(), .where(), .fields(), .sort(), .joins(), and more โ directly in the browser against a real WASM-powered MoltenDb instance.
๐ ฐ๏ธ Angular Demo App
A real-world Angular application showcasing the @moltendb-web/angular integration:
- ๐ Demo repo: github.com/maximilian27/moltendb-angular
- โก StackBlitz: Open in StackBlitz
- ๐ Live demo: moltendb-angular.maximilian-both27.workers.dev/laptops
The demo app showcases two real-world scenarios:
/laptopsโ A fully-featured data table with filtering, sorting, column visibility, field projection, and reactive summary stats usingmoltenDbResource./stress-testโ A benchmarking page measuring MoltenDB CRUD performance (bulk writes, reads, filtered/sorted queries, updates, and deletes) displayed as ops/sec.
Packages
This monorepo contains the following packages. Please refer to their individual READMEs for detailed documentation, usage examples, and API references.
| Package | Description | README |
|---|---|---|
@moltendb-web/core | Core WASM engine โ low-level database bindings | README |
@moltendb-web/query | Query builder โ ergonomic API on top of core | README |
@moltendb-web/angular | Angular integration โ reactive Signals, resources, and DI | README |
@moltendb-web/react | Angular integration โ reactive Signals, resources, and DI | README |