axiodb 1.5.8 → 1.6.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 +38 -23
- package/package.json +15 -9
package/README.md
CHANGED
|
@@ -1,33 +1,52 @@
|
|
|
1
1
|
# AxioDB
|
|
2
2
|
|
|
3
|
-
AxioDB is a fast, lightweight, and scalable open-source DBMS
|
|
3
|
+
AxioDB is a blazing-fast, lightweight, and scalable open-source Database Management System (DBMS) tailored for modern applications. It supports `.axiodb` file-based data storage, offers intuitive APIs, and ensures secure data management. AxioDB is the ultimate solution for developers seeking efficient, flexible, and production-ready database solutions.
|
|
4
4
|
|
|
5
|
-
AxioDB
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
## ⚠️ Current Limitations
|
|
8
|
+
|
|
9
|
+
While AxioDB offers many powerful features, there are some limitations to consider:
|
|
10
|
+
|
|
11
|
+
- **No Relation Mapping:** Unlike MongoDB or other NoSQL databases, AxioDB currently doesn't support document relations or referencing between collections.
|
|
12
|
+
|
|
13
|
+
- **Not Optimized for Heavy Workloads:** The database may not perform optimally with rapid data input/output scenarios or extremely large datasets (10M+ documents).
|
|
14
|
+
|
|
15
|
+
- **Single-Thread Operations:** Operations are performed on the main thread which can impact application performance during complex queries.
|
|
16
|
+
|
|
17
|
+
- **Limited Query Complexity:** Some advanced query patterns found in mature databases are not yet implemented.
|
|
18
|
+
|
|
19
|
+
- **No Built-in Replication:** Currently lacks distributed data replication capabilities for high availability setups.
|
|
20
|
+
|
|
21
|
+
We're actively working to address these limitations in future releases.
|
|
6
22
|
|
|
7
23
|
---
|
|
8
24
|
|
|
9
25
|
## 🚀 Features
|
|
10
26
|
|
|
11
|
-
- **Schema
|
|
12
|
-
- **Chainable Query Methods:**
|
|
13
|
-
- **Node.js Streams
|
|
14
|
-
- **Encryption
|
|
15
|
-
- **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more.
|
|
16
|
-
- **
|
|
27
|
+
- **Advanced Schema Validation:** Define robust schemas to ensure data consistency and integrity.
|
|
28
|
+
- **Chainable Query Methods:** Leverage powerful methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for seamless data filtering.
|
|
29
|
+
- **Optimized Node.js Streams:** Handle massive datasets effortlessly with high-performance read/write operations.
|
|
30
|
+
- **Encryption-First Design:** Protect sensitive data with optional AES-256 encryption for collections.
|
|
31
|
+
- **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more with MongoDB-like syntax.
|
|
32
|
+
- **InMemoryCache Mechanism:** Accelerate query execution by caching frequently accessed data, reducing query response time significantly.
|
|
33
|
+
- **Plug-and-Play Setup:** No additional database server required—install and start building instantly.
|
|
17
34
|
|
|
18
35
|
---
|
|
19
36
|
|
|
20
37
|
## 🔮 Future Plans
|
|
21
38
|
|
|
22
|
-
We're
|
|
23
|
-
|
|
24
|
-
- **In-Memory Cache Strategy:** Implementing an efficient caching mechanism to significantly speed up query operations.
|
|
25
|
-
- **Performance Optimizations:** Continuous improvements to make data handling faster and more efficient.
|
|
26
|
-
- **Extended Query Capabilities:** Additional operators and more flexible querying options.
|
|
27
|
-
- **Improved Documentation:** More examples, tutorials, and API references.
|
|
28
|
-
- **Better TypeScript Support:** Enhanced type definitions for better developer experience.
|
|
39
|
+
We're committed to continuously enhancing AxioDB with cutting-edge features:
|
|
29
40
|
|
|
30
|
-
|
|
41
|
+
- **Inbuilt Web-Based GUI Dashboard:** Provide a user-friendly, web-based interface similar to PhpMyAdmin for managing databases, collections, and data visually.
|
|
42
|
+
- **Data Export and Import Mechanisms:** Enable seamless export and import of data in various formats like JSON, CSV, and more.
|
|
43
|
+
- **Docker Image with ODM Integration:** Build a Docker image for this npm package-based DBMS, allowing integration with other programming languages via Object Document Mapping (ODM). Once completed, simply run the Docker image and connect with the ODM.
|
|
44
|
+
- **Advanced Indexing:** Implement multi-level indexing for lightning-fast queries.
|
|
45
|
+
- **Replication and Sharding:** Introduce support for distributed data replication and sharding for high availability and scalability.
|
|
46
|
+
- **Improved Query Optimization:** Enhance query performance with advanced optimization techniques.
|
|
47
|
+
- **Relational Mapping:** Introduce support for document relations and referencing between collections.
|
|
48
|
+
- **Data Backup and Restore:** Implement robust backup and restore mechanisms for data safety.
|
|
49
|
+
- **Comprehensive Documentation:** Expand tutorials, examples, and API references for developers.
|
|
31
50
|
|
|
32
51
|
---
|
|
33
52
|
|
|
@@ -248,18 +267,14 @@ AxioDB prioritizes data security with features like:
|
|
|
248
267
|
|
|
249
268
|
- Optional encryption for collections.
|
|
250
269
|
- Secure `.axiodb` file-based storage.
|
|
251
|
-
|
|
252
|
-
For vulnerabilities, please refer to the [SECURITY.md](SECURITY.md) file.
|
|
270
|
+
- InMemoryCache for faster and more secure query handling.
|
|
271
|
+
For vulnerabilities, please refer to the [SECURITY.md](SECURITY.md) file.
|
|
253
272
|
|
|
254
273
|
---
|
|
255
274
|
|
|
256
275
|
## 🤝 Contributing
|
|
257
276
|
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
Whether it's code improvements, documentation updates, bug reports, or feature suggestions - every contribution helps make this project better for everyone. Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to get started.
|
|
261
|
-
|
|
262
|
-
Together, we can build something remarkable that serves the needs of the developer community!
|
|
277
|
+
We welcome contributions from the community! Whether it's code improvements, documentation updates, bug reports, or feature suggestions, your input helps make AxioDB better. Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file for guidelines on how to get started.
|
|
263
278
|
|
|
264
279
|
---
|
|
265
280
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiodb",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A fast, lightweight, and scalable
|
|
3
|
+
"version": "1.6.1",
|
|
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",
|
|
7
7
|
"scripts": {
|
|
@@ -13,13 +13,19 @@
|
|
|
13
13
|
"keywords": [
|
|
14
14
|
"database",
|
|
15
15
|
"dbms",
|
|
16
|
-
"db",
|
|
17
|
-
"json",
|
|
18
16
|
"json database",
|
|
19
17
|
"json db",
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
18
|
+
"file-based database",
|
|
19
|
+
"lightweight database",
|
|
20
|
+
"secure database",
|
|
21
|
+
"schema validation",
|
|
22
|
+
"data encryption",
|
|
23
|
+
"aggregation pipelines",
|
|
24
|
+
"nodejs database",
|
|
25
|
+
"high-performance database",
|
|
26
|
+
"in-memory cache",
|
|
27
|
+
"query optimization",
|
|
28
|
+
"modern database solution"
|
|
23
29
|
],
|
|
24
30
|
"author": "Ankan Saha",
|
|
25
31
|
"license": "MIT",
|
|
@@ -32,7 +38,7 @@
|
|
|
32
38
|
"@fastify/static": "^8.0.3",
|
|
33
39
|
"fastify": "^5.1.0",
|
|
34
40
|
"joi": "^17.13.3",
|
|
35
|
-
"outers": "^8.
|
|
41
|
+
"outers": "^8.6.2"
|
|
36
42
|
},
|
|
37
43
|
"devDependencies": {
|
|
38
44
|
"@types/crypto-js": "^4.2.1",
|
|
@@ -42,4 +48,4 @@
|
|
|
42
48
|
"typescript": "^5.6.2",
|
|
43
49
|
"typescript-eslint": "^8.8.0"
|
|
44
50
|
}
|
|
45
|
-
}
|
|
51
|
+
}
|