komado 0.1.1 → 0.1.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/README.md +16 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -52,22 +52,30 @@ Then just type **`komado`**. Re-run that same command any time to update. It nee
|
|
|
52
52
|
`git`, **Node ≥ 20**, and `npm`; it installs to `~/.local/share/komado` with the
|
|
53
53
|
launcher in `~/.local/bin` (override via `KOMADO_APP_DIR` / `KOMADO_BIN_DIR`).
|
|
54
54
|
|
|
55
|
-
**Windows** —
|
|
56
|
-
`komado` command on your `PATH
|
|
55
|
+
**Windows** — one line installs Node.js for you (via `winget`) if it's missing,
|
|
56
|
+
then komado, leaving a native `komado` command on your `PATH`. Works from **both
|
|
57
|
+
CMD and PowerShell**, and ignores the execution policy either way:
|
|
57
58
|
|
|
58
|
-
```
|
|
59
|
-
|
|
59
|
+
```
|
|
60
|
+
powershell -NoProfile -ExecutionPolicy Bypass -c "irm https://raw.githubusercontent.com/RyuPrad/komado/main/install.ps1 | iex"
|
|
60
61
|
```
|
|
61
62
|
|
|
62
|
-
|
|
63
|
+
Prefer the native syntax? In **PowerShell**:
|
|
63
64
|
|
|
64
65
|
```powershell
|
|
65
66
|
irm https://raw.githubusercontent.com/RyuPrad/komado/main/install.ps1 | iex
|
|
66
67
|
```
|
|
67
68
|
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
69
|
+
Already have **Node ≥ 20**? `npm i -g komado` works from either shell — CMD runs
|
|
70
|
+
npm's `.cmd` shim directly, and PowerShell does too if your execution policy
|
|
71
|
+
allows scripts.
|
|
72
|
+
|
|
73
|
+
> Note: the short `irm … | iex` form is PowerShell-only — in **CMD** it prints
|
|
74
|
+
> `'irm' is not recognized`. Use the longer one-liner above (which works in both),
|
|
75
|
+
> or run `npm i -g komado` directly.
|
|
76
|
+
|
|
77
|
+
Don't use the `curl … | bash` line on Windows — under **Git Bash** or **WSL** it
|
|
78
|
+
installs a launcher that only runs inside that shell, never from CMD/PowerShell.
|
|
71
79
|
|
|
72
80
|
Uninstall from inside the app — **Settings → Uninstall komado…** (type `uninstall` to
|
|
73
81
|
confirm) — removes the app, its launcher, and `~/.komado` (config, reading progress,
|