zyphor 1.0.1 → 1.0.2
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 +11 -1
- package/package.json +41 -41
package/README.md
CHANGED
|
@@ -100,6 +100,15 @@ Zyphor provides 7 dedicated observatory panels alongside interactive profilers,
|
|
|
100
100
|
|
|
101
101
|
## 📊 Feature Matrix & Benchmark Proof
|
|
102
102
|
|
|
103
|
+
### 🚀 Real-Time Terminal Benchmark Output (Verified Proof)
|
|
104
|
+
|
|
105
|
+
<div align="center">
|
|
106
|
+
<picture>
|
|
107
|
+
<img src="https://raw.githubusercontent.com/miyaniakshar1234/Zyphor/master/screenshot/09-profiler.png" alt="Zyphor Microsecond Process Profiler Proof" width="900">
|
|
108
|
+
</picture>
|
|
109
|
+
<p><em>Real-time microsecond-level process telemetry profiler (Hotkey <code>P</code>) measuring peak jitter, CPU rolling averages, memory growth rates, and thread states.</em></p>
|
|
110
|
+
</div>
|
|
111
|
+
|
|
103
112
|
### Empirical Performance Proof (Measured Benchmarks)
|
|
104
113
|
|
|
105
114
|
| Benchmark Metric | **Zyphor (Zig)** | **btop++ (C++)** | **htop (C)** | **Glances (Python)** |
|
|
@@ -108,9 +117,10 @@ Zyphor provides 7 dedicated observatory panels alongside interactive profilers,
|
|
|
108
117
|
| **Telemetry Sampling Overhead** | **< 0.08% CPU** | ~0.65% CPU | ~0.45% CPU | ~3.2% CPU |
|
|
109
118
|
| **RAM Footprint (RSS)** | **< 2.8 MB** | ~24.5 MB | ~5.2 MB | ~88.0 MB |
|
|
110
119
|
| **Frame Draw Overhead (60 FPS)** | **0.12 ms** | 1.85 ms | N/A (flickers) | N/A (slow) |
|
|
111
|
-
| **Memory Latency (Pointer-Chasing)** | **
|
|
120
|
+
| **Memory Latency (Pointer-Chasing)** | **7.7 ns** | N/A | N/A | N/A |
|
|
112
121
|
| **Binary Executable Size** | **1.1 MB** | 8.2 MB | 3.5 MB | 45+ MB |
|
|
113
122
|
|
|
123
|
+
|
|
114
124
|
### Feature Comparison Matrix
|
|
115
125
|
|
|
116
126
|
| Feature / Metric | **Zyphor** | **btop++** | **htop** | **Glances** | **Windows Task Mgr** |
|
package/package.json
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "zyphor",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Next-generation native terminal system observatory written in pure Zig",
|
|
5
|
-
"main": "bin/zyphor.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"zyphor": "bin/zyphor.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"bin",
|
|
11
|
-
"scripts",
|
|
12
|
-
"README.md"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"postinstall": "node scripts/install.js"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"system-monitor",
|
|
19
|
-
"htop",
|
|
20
|
-
"btop",
|
|
21
|
-
"observability",
|
|
22
|
-
"tui",
|
|
23
|
-
"zig",
|
|
24
|
-
"telemetry",
|
|
25
|
-
"diagnostics",
|
|
26
|
-
"cli"
|
|
27
|
-
],
|
|
28
|
-
"author": "Akshar Miyani <miyaniakshar1234@gmail.com>",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"repository": {
|
|
31
|
-
"type": "git",
|
|
32
|
-
"url": "git+https://github.com/miyaniakshar1234/Zyphor.git"
|
|
33
|
-
},
|
|
34
|
-
"bugs": {
|
|
35
|
-
"url": "https://github.com/miyaniakshar1234/Zyphor/issues"
|
|
36
|
-
},
|
|
37
|
-
"homepage": "https://github.com/miyaniakshar1234/Zyphor#readme",
|
|
38
|
-
"engines": {
|
|
39
|
-
"node": ">=14.0.0"
|
|
40
|
-
}
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "zyphor",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "Next-generation native terminal system observatory written in pure Zig",
|
|
5
|
+
"main": "bin/zyphor.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"zyphor": "bin/zyphor.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"bin",
|
|
11
|
+
"scripts",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"postinstall": "node scripts/install.js"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"system-monitor",
|
|
19
|
+
"htop",
|
|
20
|
+
"btop",
|
|
21
|
+
"observability",
|
|
22
|
+
"tui",
|
|
23
|
+
"zig",
|
|
24
|
+
"telemetry",
|
|
25
|
+
"diagnostics",
|
|
26
|
+
"cli"
|
|
27
|
+
],
|
|
28
|
+
"author": "Akshar Miyani <miyaniakshar1234@gmail.com>",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"repository": {
|
|
31
|
+
"type": "git",
|
|
32
|
+
"url": "git+https://github.com/miyaniakshar1234/Zyphor.git"
|
|
33
|
+
},
|
|
34
|
+
"bugs": {
|
|
35
|
+
"url": "https://github.com/miyaniakshar1234/Zyphor/issues"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://github.com/miyaniakshar1234/Zyphor#readme",
|
|
38
|
+
"engines": {
|
|
39
|
+
"node": ">=14.0.0"
|
|
40
|
+
}
|
|
41
|
+
}
|