@vincentzyuapps/winload 0.1.9-rc.1 â 0.1.9-rc.3
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 +15 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vincentzyuapps/winload",
|
|
3
|
-
"version": "0.1.9-rc.
|
|
3
|
+
"version": "0.1.9-rc.3",
|
|
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-rc.
|
|
37
|
-
"@vincentzyuapps/winload-win32-arm64": "0.1.9-rc.
|
|
38
|
-
"@vincentzyuapps/winload-linux-x64": "0.1.9-rc.
|
|
39
|
-
"@vincentzyuapps/winload-linux-arm64": "0.1.9-rc.
|
|
40
|
-
"@vincentzyuapps/winload-darwin-x64": "0.1.9-rc.
|
|
41
|
-
"@vincentzyuapps/winload-darwin-arm64": "0.1.9-rc.
|
|
36
|
+
"@vincentzyuapps/winload-win32-x64": "0.1.9-rc.3",
|
|
37
|
+
"@vincentzyuapps/winload-win32-arm64": "0.1.9-rc.3",
|
|
38
|
+
"@vincentzyuapps/winload-linux-x64": "0.1.9-rc.3",
|
|
39
|
+
"@vincentzyuapps/winload-linux-arm64": "0.1.9-rc.3",
|
|
40
|
+
"@vincentzyuapps/winload-darwin-x64": "0.1.9-rc.3",
|
|
41
|
+
"@vincentzyuapps/winload-darwin-arm64": "0.1.9-rc.3"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/readme.md
CHANGED
|
@@ -8,23 +8,24 @@
|
|
|
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
|
-
> **[đ æč¨æ](readme.lzh.md)**
|
|
14
14
|
|
|
15
15
|
[](https://github.com/VincentZyuApps/winload)
|
|
16
16
|
[](https://gitee.com/vincent-zyu/winload)
|
|
17
17
|
|
|
18
|
-
[](https://github.com/VincentZyuApps/winload/releases)
|
|
19
|
+
[](https://github.com/VincentZyuApps/winload/releases)
|
|
20
20
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
21
21
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
22
22
|
|
|
23
23
|
[](https://pypi.org/project/winload/)
|
|
24
|
-
[](https://www.npmjs.com/package/@vincentzyuapps/winload)
|
|
25
24
|
[](https://crates.io/crates/winload)
|
|
26
25
|
|
|
27
|
-
[](https://www.npmjs.com/package/@vincentzyuapps/winload)
|
|
27
|
+
|
|
28
|
+
[](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2FVincentZyuApps%2Fscoop-bucket%22&o=false)
|
|
28
29
|
[](https://aur.archlinux.org/packages/winload-rust-bin)
|
|
29
30
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
30
31
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
@@ -48,7 +49,7 @@ https://github.com/rolandriegel/nload
|
|
|
48
49
|
- **Minimal UI**: clean TUI that mirrors nload's ergonomics.
|
|
49
50
|
|
|
50
51
|
## đ Performance Benchmarks
|
|
51
|
-
> ⥠Winload (Rust) achieves **~10ms startup** and **<
|
|
52
|
+
> ⥠Winload (Rust) achieves **~10ms startup** and **<2MB binary size**, significantly outperforming Python and matching C++ nload in efficiency.
|
|
52
53
|
|
|
53
54
|

|
|
54
55
|
|
|
@@ -92,16 +93,19 @@ uv run python -c "import shutil; print(shutil.which('winload'))"
|
|
|
92
93
|
## đĨ Rust Edition Installation (recommended)
|
|
93
94
|
### npm (cross-platform)
|
|
94
95
|
```bash
|
|
96
|
+
# Recommended (scoped)
|
|
95
97
|
npm install -g @vincentzyuapps/winload
|
|
96
|
-
|
|
98
|
+
# Alternative (unscoped)
|
|
99
|
+
npm install -g winload-rust-bin
|
|
100
|
+
# Alternative (GitHub Packages)
|
|
101
|
+
npm install -g @vincentzyuapps/winload --registry https://npm.pkg.github.com
|
|
97
102
|
# on Windows, use win-nload to avoid conflict with System32\winload.exe
|
|
98
103
|
# on Linux/macOS, both winload and win-nload work
|
|
99
104
|
# or use npx directly
|
|
100
105
|
npx @vincentzyuapps/winload
|
|
101
106
|
```
|
|
102
|
-
> â ī¸ 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.
|
|
103
107
|
|
|
104
|
-
> Includes
|
|
108
|
+
> Includes 4 precompiled binaries for x86_64 & ARM64 across Windows, Linux, and macOS.
|
|
105
109
|
|
|
106
110
|
### Cargo (Build from source)
|
|
107
111
|
```bash
|
|
@@ -128,7 +132,7 @@ where win-nload # CMD
|
|
|
128
132
|
> scoop install windows-terminal-preview
|
|
129
133
|
> wtp
|
|
130
134
|
> ```
|
|
131
|
-
> đĄ **All builds require Windows 10+** (Rust 1.77+ dropped Windows 7/8 support). Scoop and npm provide **MSVC + Npcap** for **x86_64** and **ARM64** by default. These builds now delay-load `wpcap.dll`, reducing startup failures before `--npcap` is used, but loopback capture still requires Npcap installed on the system.
|
|
135
|
+
> đĄ **All builds require Windows 10+** (Rust 1.77+ dropped Windows 7/8 support). Scoop and npm provide **MSVC + Npcap** for **x86_64** and **ARM64** by default. These builds now delay-load `wpcap.dll`, reducing startup failures before `--npcap` is used, but loopback capture still requires Npcap installed on the system.
|
|
132
136
|
|
|
133
137
|
### Arch Linux (AUR):
|
|
134
138
|
```bash
|
|
@@ -302,3 +306,4 @@ On Linux and macOS, loopback traffic works out of the box â no extra flags nee
|
|
|
302
306
|
## đ§ Epilogue
|
|
303
307
|
|
|
304
308
|
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.
|
|
309
|
+
|