qhttpx 2.0.1 → 2.1.0
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 +14 -6
- package/dist/package.json +1 -1
- package/docs/API_REFERENCE.md +749 -0
- package/docs/MIGRATION_1.9_TO_2.0.md +495 -0
- package/docs/PRODUCTION_DEPLOYMENT.md +798 -0
- package/docs/SECURITY.md +876 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
<img src="https://raw.githubusercontent.com/Quantam-Open-Source/qhttpx/main/assets/logo.svg" alt="QHTTPX Logo" width="200" height="200" />
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
|
-
|
|
6
5
|
<div align="center">
|
|
7
|
-
<strong>The
|
|
6
|
+
<strong>The Ultra-Fast HTTP Framework for Node.js</strong>
|
|
8
7
|
</div>
|
|
9
8
|
|
|
10
9
|
<br />
|
|
@@ -13,18 +12,16 @@
|
|
|
13
12
|
|
|
14
13
|
[](https://www.npmjs.com/package/qhttpx)
|
|
15
14
|
[](https://www.npmjs.com/package/qhttpx)
|
|
16
|
-
[](https://qhttpx.gridrr.com)
|
|
17
15
|
[](https://github.com/Quantam-Open-Source/qhttpx/blob/main/LICENSE)
|
|
18
16
|
[](http://makeapullrequest.com)
|
|
19
17
|
[](https://www.typescriptlang.org)
|
|
18
|
+
[](#)
|
|
20
19
|
|
|
21
20
|
</div>
|
|
22
21
|
|
|
23
22
|
<br />
|
|
24
23
|
|
|
25
|
-
**
|
|
26
|
-
|
|
27
|
-
It is not just a web framework; it is an **Operating System for your API**.
|
|
24
|
+
**QHttpX** is a high-performance HTTP framework for Node.js. Minimal API. Maximum performance. Built-in features like Request Fusion, WebSockets, and rate limiting.
|
|
28
25
|
|
|
29
26
|
---
|
|
30
27
|
|
|
@@ -129,6 +126,17 @@ Everything you need, built-in but modular.
|
|
|
129
126
|
|
|
130
127
|
---
|
|
131
128
|
|
|
129
|
+
## 📚 Documentation
|
|
130
|
+
|
|
131
|
+
New to QHttpX? Start here:
|
|
132
|
+
|
|
133
|
+
- **[API Reference](./docs/API_REFERENCE.md)** - Complete API documentation with examples
|
|
134
|
+
- **[Security Guide](./docs/SECURITY.md)** - Production security best practices
|
|
135
|
+
- **[Production Deployment](./docs/PRODUCTION_DEPLOYMENT.md)** - Deploy to VPS, Docker, or Kubernetes
|
|
136
|
+
- **[Migration Guide](./docs/MIGRATION_1.9_TO_2.0.md)** - Migrate from v1.9.4 to v2.0+
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
132
140
|
## 📦 Installation
|
|
133
141
|
|
|
134
142
|
```bash
|