@hammr/do-orm 1.0.0 → 1.0.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.
- package/README.md +8 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,13 +6,13 @@ DO-ORM makes Durable Objects queryable like a real database while maintaining th
|
|
|
6
6
|
|
|
7
7
|
## Features
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
**Type-safe schema definitions** - Full TypeScript inference for all CRUD operations
|
|
10
|
+
**Automatic validation** - Schema validation on every write operation
|
|
11
|
+
**Efficient indexing** - Single-field indexes for O(log n) queries instead of O(n) scans
|
|
12
|
+
**Fluent query builder** - Chain `.where()`, `.after()`, `.before()`, `.limit()`, `.orderBy()`
|
|
13
|
+
**Full CRUD support** - `create()`, `find()`, `update()`, `delete()`, and bulk operations
|
|
14
|
+
**Zero dependencies** - Pure TypeScript using DO storage primitives
|
|
15
|
+
**Zero runtime overhead** - Direct wrapper around Durable Objects storage API
|
|
16
16
|
|
|
17
17
|
## Installation
|
|
18
18
|
|
|
@@ -553,7 +553,7 @@ This is v1 - there's lots of room for improvement!
|
|
|
553
553
|
|
|
554
554
|
## License
|
|
555
555
|
|
|
556
|
-
|
|
556
|
+
Apache-2.0
|
|
557
557
|
|
|
558
558
|
---
|
|
559
559
|
|