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 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 High-Performance Hybrid HTTP Runtime for Node.js</strong>
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
  [![npm version](https://img.shields.io/npm/v/qhttpx.svg?style=flat-square)](https://www.npmjs.com/package/qhttpx)
15
14
  [![Downloads](https://img.shields.io/npm/dm/qhttpx.svg?style=flat-square)](https://www.npmjs.com/package/qhttpx)
16
- [![Website](https://img.shields.io/badge/website-qhttpx.gridrr.com-blueviolet.svg?style=flat-square)](https://qhttpx.gridrr.com)
17
15
  [![License](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://github.com/Quantam-Open-Source/qhttpx/blob/main/LICENSE)
18
16
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
19
17
  [![TypeScript](https://img.shields.io/badge/Written%20in-TypeScript-blue?style=flat-square)](https://www.typescriptlang.org)
18
+ [![Production Ready](https://img.shields.io/badge/Production-Ready-brightgreen.svg?style=flat-square)](#)
20
19
 
21
20
  </div>
22
21
 
23
22
  <br />
24
23
 
25
- **QHTTPX** is a next-generation, concurrency-native HTTP runtime designed to outperform traditional frameworks like Express and Fastify. It is built from the ground up to handle extreme concurrency on low-resource hardware by leveraging a unified async scheduler for requests, streams, and background tasks.
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
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qhttpx",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "gypfile": false,
5
5
  "description": "The Ultra-Fast HTTP Framework for Node.js",
6
6
  "main": "dist/src/index.js",