xypriss 1.2.3 → 1.2.4

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 +88 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,89 @@
1
+ <div align="center">
2
+ <img src="https://sdk.nehonix.space/assets/xypriss/mode/transparent/logo.png" alt="XyPriss Logo" width="200" height="200">
3
+
1
4
  # XyPriss
2
5
 
6
+ A Node.js framework extending Express.js with performance, security, and scalability features
7
+
3
8
  [![npm version](https://badge.fury.io/js/xypriss.svg)](https://badge.fury.io/js/xypriss)
4
9
  [![TypeScript](https://img.shields.io/badge/TypeScript-007ACC?style=flat&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)
5
10
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
11
+ [![Powered by Nehonix](https://img.shields.io/badge/Powered%20by-Nehonix-blue?style=flat&logo=data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDJMMTMuMDkgOC4yNkwyMCA5TDEzLjA5IDE1Ljc0TDEyIDIyTDEwLjkxIDE1Ljc0TDQgOUwxMC45MSA4LjI2TDEyIDJaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K)](https://nehonix.space)
12
+
13
+ </div>
14
+
15
+ ---
16
+
17
+ ## About XyPriss
6
18
 
7
19
  XyPriss is a Node.js framework that extends Express.js with additional performance, security, and scalability features. Built with TypeScript, it maintains full Express.js compatibility while adding enterprise-level capabilities for production applications.
8
20
 
9
- > **Migration Notice**: This library is the separated version of FortifyJS accessible via [the link](https://github.com/nehonix/FortifyJS) or using `npm install fortify2-js`. The FortifyJS library will be deprecated soon, so start moving from it to XyPriss for future improvements.
21
+ ### Key Benefits
22
+
23
+ - Optimized for high-performance applications
24
+ - Built-in security modules and best practices
25
+ - Intelligent clustering and load balancing
26
+ - Full Express.js compatibility with TypeScript support
27
+
28
+ > **Migration Notice**: This library is the evolved version of FortifyJS. The FortifyJS library will be deprecated soon - migrate to XyPriss for continued support and new features. [Learn more](https://github.com/nehonix/FortifyJS)
29
+
30
+ ---
31
+
32
+ ## Quick Start
33
+
34
+ ```bash
35
+ # Install XyPriss
36
+ npm install xypriss
37
+
38
+ # Or with yarn
39
+ yarn add xypriss
40
+ ```
41
+
42
+ ```typescript
43
+ import { createServer } from "xypriss";
44
+
45
+ // Create a server with enhanced features
46
+ const server = createServer({
47
+ server: { port: 3000 },
48
+ security: { enabled: true },
49
+ performance: { clustering: true },
50
+ });
51
+
52
+ // Use it like Express.js
53
+ server.get("/", (req, res) => {
54
+ res.json({
55
+ message: "Hello from XyPriss!",
56
+ powered: "Nehonix",
57
+ });
58
+ });
59
+
60
+ // Start the server
61
+ server.start();
62
+ ```
63
+
64
+ Your server is now running with enhanced performance and security features.
65
+
66
+ ---
67
+
68
+ ## Table of Contents
69
+
70
+ - [About XyPriss](#about-xypriss)
71
+ - [Quick Start](#quick-start)
72
+ - [Key Features](#key-features)
73
+ - [Performance and Scalability](#performance-and-scalability)
74
+ - [Security and Reliability](#security-and-reliability)
75
+ - [Developer Experience](#developer-experience)
76
+ - [Network Plugins](#network-plugins)
77
+ - [Installation](#installation)
78
+ - [Basic Usage](#basic-usage)
79
+ - [Configuration](#configuration)
80
+ - [Plugins](#plugins)
81
+ - [Documentation](#documentation)
82
+ - [Contributing](#contributing)
83
+ - [License](#license)
84
+ - [Support](#support)
85
+
86
+ ---
10
87
 
11
88
  ## Key Features
12
89
 
@@ -293,3 +370,13 @@ MIT License - see [LICENSE](./LICENSE) file for details.
293
370
  - [GitHub Issues](https://github.com/Nehonix-Team/XyPriss/issues)
294
371
  - [Security Advisories](https://github.com/Nehonix-Team/XyPriss/security)
295
372
 
373
+ ---
374
+
375
+ ### Powered by Nehonix
376
+
377
+ XyPriss is developed and maintained by the Nehonix Team.
378
+
379
+ [![Website](https://img.shields.io/badge/Website-nehonix.space-blue?style=for-the-badge&logo=globe)](https://nehonix.space)
380
+ [![GitHub](https://img.shields.io/badge/GitHub-Nehonix--Team-black?style=for-the-badge&logo=github)](https://github.com/Nehonix-Team)
381
+ [![Twitter](https://img.shields.io/badge/Twitter-@nehonix-1DA1F2?style=for-the-badge&logo=twitter)](https://twitter.com/nehonix)
382
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xypriss",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "XyPriss is a Node.js framework that extends Express.js with additional performance, security, and scalability features. Built with TypeScript, it maintains full Express.js compatibility while adding enterprise-level capabilities for production applications.",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",