axiodb 1.6.8 → 1.6.9

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 +5 -4
  2. package/package.json +21 -2
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # AxioDB
1
+ # AxioDB: A NoSQL Based Database Management System
2
2
 
3
3
  [![npm version](https://badge.fury.io/js/axiodb.svg)](https://badge.fury.io/js/axiodb)
4
4
  [![CodeQL](https://github.com/AnkanSaha/AxioDB/actions/workflows/github-code-scanning/codeql/badge.svg?branch=main)](https://github.com/AnkanSaha/AxioDB/actions/workflows/github-code-scanning/codeql)
@@ -24,7 +24,7 @@ AxioDB is a blazing-fast, lightweight, and scalable open-source Database Managem
24
24
 
25
25
  While AxioDB offers many powerful features, there are some limitations to consider:
26
26
 
27
- - **No Relation Mapping:** Unlike MongoDB or other NoSQL databases, AxioDB currently doesn't support document relations or referencing between collections.
27
+ - **No Built-in Relation Tools:** Unlike ODMs such as Mongoose, AxioDB doesn't provide built-in tools for managing document relations. While MongoDB-like NoSQL databases naturally don't enforce relations at the database level, AxioDB currently requires manual handling of references between collections.
28
28
 
29
29
  - **Not Optimized for Heavy Workloads:** The database may not perform optimally with rapid data input/output scenarios or extremely large datasets (10M+ documents).
30
30
 
@@ -38,7 +38,7 @@ We're actively working to address these limitations in future releases.
38
38
 
39
39
  ---
40
40
 
41
- ## 🚀 Features
41
+ ## 🚀 Current Featured Features
42
42
 
43
43
  - **Advanced Schema Validation:** Define robust schemas to ensure data consistency and integrity.
44
44
  - **Chainable Query Methods:** Leverage powerful methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for seamless data filtering.
@@ -47,6 +47,8 @@ We're actively working to address these limitations in future releases.
47
47
  - **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more with MongoDB-like syntax.
48
48
  - **InMemoryCache Mechanism:** Accelerate query execution by caching frequently accessed data, reducing query response time significantly.
49
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.
50
52
 
51
53
  ---
52
54
 
@@ -60,7 +62,6 @@ We're committed to continuously enhancing AxioDB with cutting-edge features:
60
62
  - **Advanced Indexing:** Implement multi-level indexing for lightning-fast queries.
61
63
  - **Replication and Sharding:** Introduce support for distributed data replication and sharding for high availability and scalability.
62
64
  - **Improved Query Optimization:** Enhance query performance with advanced optimization techniques.
63
- - **Relational Mapping:** Introduce support for document relations and referencing between collections.
64
65
  - **Data Backup and Restore:** Implement robust backup and restore mechanisms for data safety.
65
66
  - **Comprehensive Documentation:** Expand tutorials, examples, and API references for developers.
66
67
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "axiodb",
3
- "version": "1.6.8",
3
+ "version": "1.6.9",
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",
@@ -25,7 +25,21 @@
25
25
  "high-performance database",
26
26
  "in-memory cache",
27
27
  "query optimization",
28
- "modern database solution"
28
+ "modern database solution",
29
+ "fast database",
30
+ "scalable database",
31
+ "nodejs dbms",
32
+ "database management system",
33
+ "cloud-ready database",
34
+ "developer-friendly database",
35
+ "open-source database",
36
+ "typescript database",
37
+ "fastify database integration",
38
+ "schema-based database",
39
+ "encrypted database",
40
+ "real-time database",
41
+ "portable database",
42
+ "lightweight dbms"
29
43
  ],
30
44
  "author": "Ankan Saha",
31
45
  "license": "MIT",
@@ -47,5 +61,10 @@
47
61
  "globals": "^15.9.0",
48
62
  "typescript": "^5.6.2",
49
63
  "typescript-eslint": "^8.8.0"
64
+ },
65
+ "engines": {
66
+ "node": ">=18.0.0",
67
+ "npm": ">=6.0.0",
68
+ "yarn": ">=1.0.0"
50
69
  }
51
70
  }