axiodb 1.6.9 → 1.7.2
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 +16 -16
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# AxioDB: A NoSQL Based
|
|
1
|
+
# AxioDB: A NoSQL Based DBMS
|
|
2
2
|
|
|
3
3
|
[](https://badge.fury.io/js/axiodb)
|
|
4
4
|
[](https://github.com/AnkanSaha/AxioDB/actions/workflows/github-code-scanning/codeql)
|
|
@@ -8,8 +8,8 @@ AxioDB is a blazing-fast, lightweight, and scalable open-source Database Managem
|
|
|
8
8
|
|
|
9
9
|
## 🌐 Table of Contents
|
|
10
10
|
|
|
11
|
-
- [⚠️ Current Limitations](#-current-limitations)
|
|
12
11
|
- [🚀 Features](#-features)
|
|
12
|
+
- [⚠️ Current Limitations](#-current-limitations)
|
|
13
13
|
- [🔮 Future Plans](#-future-plans)
|
|
14
14
|
- [📦 Installation](#-installation)
|
|
15
15
|
- [🛠️ Usage](#-usage)
|
|
@@ -20,6 +20,20 @@ AxioDB is a blazing-fast, lightweight, and scalable open-source Database Managem
|
|
|
20
20
|
- [📜 License](#-license)
|
|
21
21
|
- [🙌 Acknowledgments](#-acknowledgments)
|
|
22
22
|
|
|
23
|
+
## 🚀 Current Featured Features
|
|
24
|
+
|
|
25
|
+
- **Advanced Schema Validation:** Define robust schemas to ensure data consistency and integrity.
|
|
26
|
+
- **Chainable Query Methods:** Leverage powerful methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for seamless data filtering.
|
|
27
|
+
- **Optimized Node.js Streams:** Handle massive datasets effortlessly with high-performance read/write operations.
|
|
28
|
+
- **Encryption-First Design:** Protect sensitive data with optional AES-256 encryption for collections.
|
|
29
|
+
- **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more with MongoDB-like syntax.
|
|
30
|
+
- **InMemoryCache Mechanism:** Accelerate query execution by caching frequently accessed data, reducing query response time significantly.
|
|
31
|
+
- **Plug-and-Play Setup:** No additional database server required—install and start building instantly.
|
|
32
|
+
- **Tree-like Structure:** Store data in a tree-like structure for efficient data retrieval and management.
|
|
33
|
+
- **Auto Indexing on documentId:** Automatically create index on documentId for faster queries.
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
23
37
|
## ⚠️ Current Limitations
|
|
24
38
|
|
|
25
39
|
While AxioDB offers many powerful features, there are some limitations to consider:
|
|
@@ -38,20 +52,6 @@ We're actively working to address these limitations in future releases.
|
|
|
38
52
|
|
|
39
53
|
---
|
|
40
54
|
|
|
41
|
-
## 🚀 Current Featured Features
|
|
42
|
-
|
|
43
|
-
- **Advanced Schema Validation:** Define robust schemas to ensure data consistency and integrity.
|
|
44
|
-
- **Chainable Query Methods:** Leverage powerful methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for seamless data filtering.
|
|
45
|
-
- **Optimized Node.js Streams:** Handle massive datasets effortlessly with high-performance read/write operations.
|
|
46
|
-
- **Encryption-First Design:** Protect sensitive data with optional AES-256 encryption for collections.
|
|
47
|
-
- **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more with MongoDB-like syntax.
|
|
48
|
-
- **InMemoryCache Mechanism:** Accelerate query execution by caching frequently accessed data, reducing query response time significantly.
|
|
49
|
-
- **Plug-and-Play Setup:** No additional database server required—install and start building instantly.
|
|
50
|
-
- **Tree-like Structure:** Store data in a tree-like structure for efficient data retrieval and management.
|
|
51
|
-
- **Auto Indexing on documentId:** Automatically create index on documentId for faster queries.
|
|
52
|
-
|
|
53
|
-
---
|
|
54
|
-
|
|
55
55
|
## 🔮 Future Plans
|
|
56
56
|
|
|
57
57
|
We're committed to continuously enhancing AxioDB with cutting-edge features:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiodb",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.2",
|
|
4
4
|
"description": "A blazing-fast, lightweight, and scalable nodejs package based DBMS for modern applications. Supports schemas, encryption, and advanced query capabilities.",
|
|
5
5
|
"main": "./lib/config/DB.js",
|
|
6
6
|
"types": "./lib/config/DB.d.ts",
|