@chahuadev/framework 5.0.4 → 5.0.6

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 +30 -47
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,65 +1,50 @@
1
+ # @chahuadev/framework
1
2
 
2
3
  The official core executable framework for Chahuadev.
3
4
 
5
+ <div align="center">
6
+
4
7
  <p align="center">
5
- <img src="https://github.com/saharuthc-art/chahuadev-framework/blob/39932ffc5482af35968c1d217d0c07613e13e6fc/chahuadev.png" width="600" alt="Chahuadev Framework">
8
+ <img src="https://huggingface.co/datasets/chahuadev/chahuadev-framework-binaries/resolve/main/chahuadev-framework-binaries.png" width="600" alt="Chahuadev Framework">
6
9
  </p>
7
10
 
8
- This package provides a seamless way to integrate and run the Chahuadev Framework directly from your Node.js environment or Command Line Interface (CLI).
9
-
10
- > **Multi-Platform Support:** This framework runs on **Windows (x64, ia32)** and **Linux (x64)**.
11
- > Our system automatically detects your operating system and downloads the required binary behind the scenes.
12
-
13
- ---
14
-
15
- ## Installation
16
-
17
- ### Global Install (Recommended for CLI)
18
- If you want to use the framework from your terminal anywhere on your system:
11
+ <p align="center">
12
+ <a href="https://www.npmjs.com/package/@chahuadev/framework"><img src="https://img.shields.io/npm/v/@chahuadev/framework?style=for-the-badge&color=blue" alt="NPM Version"></a>
13
+ <a href="https://www.npmjs.com/package/@chahuadev/framework"><img src="https://img.shields.io/npm/dt/@chahuadev/framework?style=for-the-badge&color=success" alt="NPM Downloads"></a>
14
+ </p>
19
15
 
20
- ```bash
21
- npm install -g @chahuadev/framework --foreground-scripts
22
- ```
16
+ > ⏳ **Development Journey:** This framework is the proud result of **1 full year of dedicated development**. What began as a simple concept evolved into a highly advanced, secure, and robust architecture. Every line of code was meticulously crafted to ensure maximum stability and a premium experience for developers.
23
17
 
24
- After installation, simply launch it:
25
- ```bash
26
- chahuadev-framework
27
- ```
18
+ </div>
28
19
 
29
- The framework will:
30
- Auto-detect your OS (Windows 32/64-bit or Linux x64)
31
- Load the appropriate executable (.exe for Windows, AppImage for Linux)
32
- Start immediately without any configuration
20
+ ---
33
21
 
34
- ### Local Install (For Node.js projects)
35
- If you want to integrate the framework into your specific project:
22
+ ## 🛡️ CRITICAL SECURITY WARNING - FORTRESS PROTECTION
36
23
 
37
- ```bash
38
- npm install -g @chahuadev/framework --foreground-scripts
39
- ```
24
+ ### Maximum Security Architecture
25
+ - **Intelligent OS Routing**: Automatically detects and securely isolates platform-specific binaries.
26
+ - **Strict Execution Boundaries**: Prevents unauthorized cross-platform executions and corrupted loads.
27
+ - **Anti-Hack Protection System**: Built-in safeguards against malicious executable swapping.
28
+ - **Dependency Isolation**: Operates securely via standalone binaries without bloating your system.
40
29
 
41
30
  ---
42
31
 
43
- ## Usage
32
+ ## ⚙️ Installation & Usage
44
33
 
45
- ### 1. Command Line Interface (CLI)
46
- If installed globally:
34
+ > **Multi-Platform Support:** This framework runs seamlessly on **Windows (x64, ia32)** and **Linux (x64)**.
35
+ > Our system automatically detects your operating system and securely downloads the required binary behind the scenes.
36
+
37
+ ### Global Install (Recommended for CLI)
38
+ If you want to use the framework from your terminal anywhere on your system:
47
39
 
48
40
  ```bash
49
- # Simple launch
50
- chahuadev-framework
41
+ npm install -g @chahuadev/framework --foreground-scripts --force
51
42
 
52
- # With arguments
53
- chahuadev-framework --dev-mode
54
- chahuadev-framework --help
55
43
  ```
56
-
57
-
58
44
  ---
59
45
 
60
46
 
61
-
62
- **When you install:**
47
+ ### When you install:**
63
48
  1. npm detects your OS and architecture
64
49
  2. Installs only the required platform-specific package
65
50
  3. index.js routes to the correct executable
@@ -75,8 +60,8 @@ This ensures:
75
60
 
76
61
  | Platform | Architecture | Status | Format |
77
62
  |----------|-------------|--------|--------|
78
- | Windows | 64-bit (x64) | Supported | EXE/MSI |
79
- | Windows | 32-bit (ia32) | Supported | EXE/MSI |
63
+ | Windows | 64-bit (x64) | Supported | EXE |
64
+ | Windows | 32-bit (ia32) | Supported | EXE |
80
65
  | Linux | 64-bit (x64) | Supported | AppImage |
81
66
  | macOS | Intel (x64) | Coming Soon | DMG/App |
82
67
  | macOS | Apple Silicon (arm64) | Coming Soon | DMG/App |
@@ -85,7 +70,7 @@ This ensures:
85
70
 
86
71
  ## Package Structure
87
72
 
88
- ```
73
+
89
74
  @chahuadev/
90
75
  ├── framework/
91
76
  │ └── index.js
@@ -93,8 +78,6 @@ This ensures:
93
78
  │ └── package.json
94
79
  │ └── README.md
95
80
 
96
- ```
97
-
98
81
  ---
99
82
 
100
83
  ## Troubleshooting
@@ -102,13 +85,13 @@ This ensures:
102
85
  ### "Command not found: chahuadev-framework"
103
86
  Make sure you installed globally:
104
87
  ```bash
105
- npm install -g @chahuadev/framework --foreground-scripts
88
+ npm install -g @chahuadev/framework --foreground-scripts --force
106
89
  ```
107
90
 
108
91
  ### "Module not found"
109
92
  If using locally, ensure it's installed:
110
93
  ```bash
111
- npm install -g @chahuadev/framework --foreground-scripts
94
+ npm install -g @chahuadev/framework --foreground-scripts --force
112
95
  ```
113
96
 
114
97
  ### "Unsupported platform"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chahuadev/framework",
3
- "version": "5.0.4",
3
+ "version": "5.0.6",
4
4
  "description": "Chahuadev Framework",
5
5
  "main": "index.js",
6
6
  "bin": {