@vincentzyuapps/winload 0.1.9-rc.1 â 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 +14 -8
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.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-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.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,23 +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
|
-
> **[đ æč¨æ](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
|
+
[](https://scoop.sh/#/apps?q=%22https%3A%2F%2Fgithub.com%2FVincentZyuApps%2Fscoop-bucket%22&o=false)
|
|
28
28
|
[](https://aur.archlinux.org/packages/winload-rust-bin)
|
|
29
29
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
30
30
|
[](https://github.com/VincentZyuApps/winload/releases)
|
|
@@ -48,7 +48,7 @@ https://github.com/rolandriegel/nload
|
|
|
48
48
|
- **Minimal UI**: clean TUI that mirrors nload's ergonomics.
|
|
49
49
|
|
|
50
50
|
## đ Performance Benchmarks
|
|
51
|
-
> ⥠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.
|
|
52
52
|
|
|
53
53
|

|
|
54
54
|
|
|
@@ -92,14 +92,20 @@ uv run python -c "import shutil; print(shutil.which('winload'))"
|
|
|
92
92
|
## đĨ Rust Edition Installation (recommended)
|
|
93
93
|
### npm (cross-platform)
|
|
94
94
|
```bash
|
|
95
|
+
# Recommended (scoped)
|
|
95
96
|
npm install -g @vincentzyuapps/winload
|
|
96
|
-
|
|
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
|
+
|
|
97
104
|
# on Windows, use win-nload to avoid conflict with System32\winload.exe
|
|
98
105
|
# on Linux/macOS, both winload and win-nload work
|
|
99
106
|
# or use npx directly
|
|
100
107
|
npx @vincentzyuapps/winload
|
|
101
108
|
```
|
|
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
109
|
|
|
104
110
|
> Includes 6 precompiled binaries for x86_64 & ARM64 across Windows, Linux, and macOS.
|
|
105
111
|
|