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.
Files changed (2) hide show
  1. package/README.md +38 -23
  2. 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 designed for modern applications. It supports `.axiodb` file-based data storage, simple APIs, and secure data management, making it ideal for projects requiring efficient and flexible database solutions.
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 is specifically designed for small to medium-sized websites, blogs, and personal projects. While it provides excellent performance for these use cases, please note that it is currently optimized for smaller data loads rather than massive enterprise-level datasets. We are continuously working to improve performance and scalability in future updates.
5
+ ![AxioDB Logo](https://raw.githubusercontent.com/AnkanSaha/AxioDB/main/assets/AxioDB-logo.png)
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 Support:** Define schemas to structure your data for consistency and validation.
12
- - **Chainable Query Methods:** Use methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for powerful query filtering.
13
- - **Node.js Streams for Efficiency:** Handle large datasets seamlessly with optimized read/write operations.
14
- - **Encryption Support:** Secure sensitive data with optional encryption for collections.
15
- - **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more.
16
- - **Simple Setup:** No additional database server required—just install and start using.
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 actively working to enhance AxioDB with several exciting features and improvements:
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
- We invite all developer enthusiasts to contribute to making AxioDB more reliable and powerful. Your insights and contributions can help shape the future of this project!
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
- As the sole developer working on this project while maintaining a full-time software engineering career, it can be challenging to dedicate as much time as I'd like to AxioDB's development. If you find this project valuable and believe it solves problems for you, your contributions would be greatly appreciated.
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.5.8",
4
- "description": "A fast, lightweight, and scalable open-source DBMS for modern apps. Supports JSON-based data storage, simple APIs, and secure data management. Ideal for projects needing efficient and flexible database solutions.",
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
- "json storage",
21
- "json data storage",
22
- "json data management"
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.5.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
+ }