@vincentzyuapps/winload 0.1.9-beta.7 â 0.1.9-rc.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/package.json +7 -7
- package/readme.md +17 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincentzyuapps/winload",
|
|
3
|
-
"version": "0.1.9-
|
|
3
|
+
"version": "0.1.9-rc.2",
|
|
4
4
|
"description": "Network Load Monitor â nload-like TUI tool for Windows/Linux/macOS (prebuilt Rust binary)",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,11 +33,11 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"optionalDependencies": {
|
|
36
|
-
"@vincentzyuapps/winload-win32-x64": "0.1.9-
|
|
37
|
-
"@vincentzyuapps/winload-win32-arm64": "0.1.9-
|
|
38
|
-
"@vincentzyuapps/winload-linux-x64": "0.1.9-
|
|
39
|
-
"@vincentzyuapps/winload-linux-arm64": "0.1.9-
|
|
40
|
-
"@vincentzyuapps/winload-darwin-x64": "0.1.9-
|
|
41
|
-
"@vincentzyuapps/winload-darwin-arm64": "0.1.9-
|
|
36
|
+
"@vincentzyuapps/winload-win32-x64": "0.1.9-rc.2",
|
|
37
|
+
"@vincentzyuapps/winload-win32-arm64": "0.1.9-rc.2",
|
|
38
|
+
"@vincentzyuapps/winload-linux-x64": "0.1.9-rc.2",
|
|
39
|
+
"@vincentzyuapps/winload-linux-arm64": "0.1.9-rc.2",
|
|
40
|
+
"@vincentzyuapps/winload-darwin-x64": "0.1.9-rc.2",
|
|
41
|
+
"@vincentzyuapps/winload-darwin-arm64": "0.1.9-rc.2"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/readme.md
CHANGED
|
@@ -8,22 +8,23 @@
|
|
|
8
8
|
> **[đ English](readme.md)**
|
|
9
9
|
> **[đ įŽäŊ䏿(大é)](readme.zh-cn.md)**
|
|
10
10
|
> **[đ įšéĢ䏿(å°įŖ)](readme.zh-tw.md)**
|
|
11
|
+
> **[đ æč¨æ](readme.lzh.md)**
|
|
11
12
|
> **[đ æĨæŦčĒ](readme.jp.md)**
|
|
12
13
|
> **[đ íęĩė´](readme.ko.md)**
|
|
13
14
|
|
|
14
15
|
[](https://github.com/VincentZyuApps/winload)
|
|
15
16
|
[](https://gitee.com/vincent-zyu/winload)
|
|
16
17
|
|
|
17
|
-
[](https://github.com/VincentZyuApps/winload/releases)
|
|
19
|
+
[](https://github.com/VincentZyuApps/winload/releases)
|
|
19
20
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
20
21
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
21
22
|
|
|
22
23
|
[](https://pypi.org/project/winload/)
|
|
23
|
-
[](https://www.npmjs.com/package/@vincentzyuapps/winload)
|
|
24
24
|
[](https://crates.io/crates/winload)
|
|
25
25
|
|
|
26
|
-
[](https://www.npmjs.com/package/@vincentzyuapps/winload)
|
|
27
|
+
[](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2FVincentZyuApps%2Fscoop-bucket%22&o=false)
|
|
27
28
|
[](https://aur.archlinux.org/packages/winload-rust-bin)
|
|
28
29
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
29
30
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
@@ -47,7 +48,7 @@ https://github.com/rolandriegel/nload
|
|
|
47
48
|
- **Minimal UI**: clean TUI that mirrors nload's ergonomics.
|
|
48
49
|
|
|
49
50
|
## đ Performance Benchmarks
|
|
50
|
-
> ⥠Winload (Rust) achieves **~10ms startup** and **<
|
|
51
|
+
> ⥠Winload (Rust) achieves **~10ms startup** and **<2MB binary size**, significantly outperforming Python and matching C++ nload in efficiency.
|
|
51
52
|
|
|
52
53
|

|
|
53
54
|
|
|
@@ -91,14 +92,20 @@ uv run python -c "import shutil; print(shutil.which('winload'))"
|
|
|
91
92
|
## đĨ Rust Edition Installation (recommended)
|
|
92
93
|
### npm (cross-platform)
|
|
93
94
|
```bash
|
|
95
|
+
# Recommended (scoped)
|
|
94
96
|
npm install -g @vincentzyuapps/winload
|
|
95
|
-
|
|
97
|
+
|
|
98
|
+
# Alternative (unscoped)
|
|
99
|
+
npm install -g winload-rust-bin
|
|
100
|
+
|
|
101
|
+
# Alternative (GitHub Packages)
|
|
102
|
+
npm install -g @vincentzyuapps/winload --registry https://npm.pkg.github.com
|
|
103
|
+
|
|
96
104
|
# on Windows, use win-nload to avoid conflict with System32\winload.exe
|
|
97
105
|
# on Linux/macOS, both winload and win-nload work
|
|
98
106
|
# or use npx directly
|
|
99
107
|
npx @vincentzyuapps/winload
|
|
100
108
|
```
|
|
101
|
-
> â ī¸ The old package `winload-rust-bin` has been deprecated. Please use `@vincentzyuapps/winload` instead. The scoped package name is required for [GitHub Packages](https://github.com/features/packages) compatibility.
|
|
102
109
|
|
|
103
110
|
> Includes 6 precompiled binaries for x86_64 & ARM64 across Windows, Linux, and macOS.
|
|
104
111
|
|
|
@@ -298,3 +305,6 @@ On Linux and macOS, loopback traffic works out of the box â no extra flags nee
|
|
|
298
305
|
| [](https://github.com/GuillaumeGomez/sysinfo) | 0.32 | System information library |
|
|
299
306
|
| [](https://github.com/clap-rs/clap) | 4 | Command-line argument parser |
|
|
300
307
|
| [](https://github.com/pcap-parser/pcap) | 2 | Packet capture (optional, Windows) |
|
|
308
|
+
## đ§ Epilogue
|
|
309
|
+
|
|
310
|
+
Network traffic flows formless through the void â yet Winload gives it shape. Packets traverse the terminal, silent and unseen, but through this window, every thread of throughput takes form before your eyes. If you seek to know the pulse of a machine's connection to the world, this tool is at once a humble lamp upon your desk and a guiding star for the journey ahead.
|