@diana-db/odm 1.0.2 → 1.0.3

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 +51 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,3 +2,54 @@
2
2
 
3
3
  Official Object Document Mapper (ODM) for [Diana DB](https://diana-db.com) – a fast, ACID-compliant No-SQL database.
4
4
 
5
+ **Diana DB**is a **column-oriented**, **schema-controlled**NoSQL database built entirely in **TypeScript**and compiled to JavaScript. It runs as a standalone **Node.js application**or as a **Docker container**via our official image.
6
+
7
+ ## What makes Diana DB unique?
8
+
9
+ ### Column-Oriented Storage
10
+ Each inserted document is decomposed into primitive values and stored in specialized data structures — one per field. In practice, this means every property acts like an index, enabling **fast insertion, updates, and lookups**.
11
+
12
+ ### Schema Enforcement
13
+ Diana DB is schema-controlled, enforcing strict data rules at the structural level to ensure **integrity**and **consistency**across your data.
14
+
15
+ ---
16
+
17
+ ## Key Features
18
+
19
+ - **Security**
20
+ All client-server communication is encrypted with **no key exchange**during connection. Without the correct credentials, data access or tampering is impossible.
21
+
22
+ - **High Performance**
23
+ Diana DB is optimized for **speed and scalability**, built for high-throughput workloads.
24
+
25
+ - **Resilience**
26
+ It automatically persists data and restores it on server restart, ensuring **robust recovery**.
27
+
28
+ - **Special Column Types**
29
+ - `TIME`: query across dates (e.g. all Mondays in April and June 2020)
30
+ - `POSITION`: spatial queries (e.g. within a polygon or radius)
31
+
32
+ - **Built-in Migrations**
33
+ Native support for **migrations**— no external tools required.
34
+
35
+ - **Non-blocking Transactions**
36
+ Reliable, consistent operations with **non-blocking transaction support**.
37
+
38
+ - **Multi-field Sorting**
39
+ Order your query results by multiple fields with ease.
40
+
41
+ - **Transform Queries**
42
+ Apply powerful transformations to documents — similar in spirit to **MongoDB aggregations**.
43
+
44
+ ---
45
+
46
+ ## Roadmap & Feedback
47
+
48
+ We are continuously evolving Diana DB and actively expanding its capabilities as it moves through **beta**.
49
+ Your **feedback and ideas**are always welcome — help us shape the future of Diana DB.
50
+
51
+ Visit the official ODM documentation: [https://diana-db.com/odm](https://diana-db.com/odm)
52
+
53
+ ---
54
+
55
+ MIT © [Data Bikers Limited](https://databikers.com)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@diana-db/odm",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "ODM for DianaDB",
5
5
  "author": "Data Bikers Limited",
6
6
  "license": "MIT",