axiodb 1.5.8 → 1.5.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.
- package/README.md +17 -24
- package/package.json +13 -7
package/README.md
CHANGED
|
@@ -1,33 +1,30 @@
|
|
|
1
1
|
# AxioDB
|
|
2
2
|
|
|
3
|
-
AxioDB is a fast, lightweight, and scalable open-source DBMS
|
|
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.
|
|
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.
|
|
6
4
|
|
|
7
5
|
---
|
|
8
6
|
|
|
9
7
|
## 🚀 Features
|
|
10
8
|
|
|
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
|
-
- **
|
|
9
|
+
- **Advanced Schema Validation:** Define robust schemas to ensure data consistency and integrity.
|
|
10
|
+
- **Chainable Query Methods:** Leverage powerful methods like `.query()`, `.Sort()`, `.Limit()`, and `.Skip()` for seamless data filtering.
|
|
11
|
+
- **Optimized Node.js Streams:** Handle massive datasets effortlessly with high-performance read/write operations.
|
|
12
|
+
- **Encryption-First Design:** Protect sensitive data with optional AES-256 encryption for collections.
|
|
13
|
+
- **Aggregation Pipelines:** Perform advanced data operations like `$match`, `$sort`, `$group`, and more with MongoDB-like syntax.
|
|
14
|
+
- **InMemoryCache Mechanism:** Accelerate query execution by caching frequently accessed data, reducing query response time significantly.
|
|
15
|
+
- **Plug-and-Play Setup:** No additional database server required—install and start building instantly.
|
|
17
16
|
|
|
18
17
|
---
|
|
19
18
|
|
|
20
19
|
## 🔮 Future Plans
|
|
21
20
|
|
|
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.
|
|
21
|
+
We're committed to continuously enhancing AxioDB with cutting-edge features:
|
|
29
22
|
|
|
30
|
-
|
|
23
|
+
- **Inbuilt Web-Based GUI Dashboard:** Provide a user-friendly, web-based interface similar to PhpMyAdmin for managing databases, collections, and data visually.
|
|
24
|
+
- **Data Export and Import Mechanisms:** Enable seamless export and import of data in various formats like JSON, CSV, and more.
|
|
25
|
+
- **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.
|
|
26
|
+
- **Advanced Indexing:** Implement multi-level indexing for lightning-fast queries.
|
|
27
|
+
- **Comprehensive Documentation:** Expand tutorials, examples, and API references for developers.
|
|
31
28
|
|
|
32
29
|
---
|
|
33
30
|
|
|
@@ -248,18 +245,14 @@ AxioDB prioritizes data security with features like:
|
|
|
248
245
|
|
|
249
246
|
- Optional encryption for collections.
|
|
250
247
|
- Secure `.axiodb` file-based storage.
|
|
251
|
-
|
|
252
|
-
For vulnerabilities, please refer to the [SECURITY.md](SECURITY.md) file.
|
|
248
|
+
- InMemoryCache for faster and more secure query handling.
|
|
249
|
+
For vulnerabilities, please refer to the [SECURITY.md](SECURITY.md) file.
|
|
253
250
|
|
|
254
251
|
---
|
|
255
252
|
|
|
256
253
|
## 🤝 Contributing
|
|
257
254
|
|
|
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!
|
|
255
|
+
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
256
|
|
|
264
257
|
---
|
|
265
258
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "axiodb",
|
|
3
|
-
"version": "1.5.
|
|
4
|
-
"description": "A fast, lightweight, and scalable
|
|
3
|
+
"version": "1.5.9",
|
|
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",
|