@moltendb-web/angular 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -4,6 +4,22 @@ The official Angular integration for MoltenDb, providing a seamless, highly reac
4
4
 
5
5
  This package bridges the gap between MoltenDb's powerful Web Worker/WASM engine and your Angular UI, offering auto-updating data resources, built-in loading states, and elegant functional dependency injection.
6
6
 
7
+ > **Requirements:** Angular **17 or higher** is required. This library uses Angular Signals and standalone APIs introduced in Angular 17. If this library generates enough interest, a legacy Angular library using RxJS may be created in the future.
8
+
9
+ ---
10
+
11
+ ## Demo
12
+
13
+ See the library in action with a real-world demo application:
14
+
15
+ - 🔗 **Demo repo:** [github.com/maximilian27/moltendb-angular](https://github.com/maximilian27/moltendb-angular)
16
+ - ⚡ **StackBlitz:** [Open in StackBlitz](https://stackblitz.com/~/github.com/maximilian27/moltendb-angular)
17
+ - 🌐 **Live demo:** [moltendb-angular.maximilian-both27.workers.dev/laptops](https://moltendb-angular.maximilian-both27.workers.dev/laptops)
18
+
19
+ The demo app showcases two real-world scenarios:
20
+ - **`/laptops`** — A fully-featured data table with filtering, sorting, column visibility, field projection, and reactive summary stats using `moltenDbResource`.
21
+ - **`/stress-test`** — A benchmarking page measuring MoltenDB CRUD performance (bulk writes, reads, filtered/sorted queries, updates, and deletes) displayed as ops/sec.
22
+
7
23
  ---
8
24
 
9
25
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moltendb-web/angular",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Official Angular Signals wrapper for MoltenDb",
5
5
  "type": "module",
6
6
  "author": "Maximilian Both <maximilian.both27@outlook.com>",
@@ -13,8 +13,8 @@
13
13
  "@angular/core": ">=17.0.0"
14
14
  },
15
15
  "dependencies": {
16
- "@moltendb-web/core": "^1.1.0",
17
- "@moltendb-web/query": "^1.1.0",
16
+ "@moltendb-web/core": "^1.1.1",
17
+ "@moltendb-web/query": "^1.1.1",
18
18
  "tslib": "^2.3.0"
19
19
  },
20
20
  "module": "fesm2022/moltendb-web-angular.mjs",