homelab-tui 2.3.0 → 2.4.0
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 +3 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,6 +46,7 @@ homelab-tui connects to Linux, macOS, and Windows hosts over SSH, discovers Dock
|
|
|
46
46
|
- **Native service discovery** — find programs listening on TCP ports across supported operating systems.
|
|
47
47
|
- **System metrics** — monitor CPU, memory, and disk usage without installing a remote agent.
|
|
48
48
|
- **Live logs** — follow Docker logs and supported native-process logs over SSH.
|
|
49
|
+
- **Interactive terminals** — keep multiple SSH shells per host, switch or reorder them, and return without losing their state.
|
|
49
50
|
- **Keyboard-first controls** — search, filter, sort, restart, stop, start, and switch tabs without a mouse.
|
|
50
51
|
- **Resilient connections** — keep healthy hosts usable while another host reconnects or fails.
|
|
51
52
|
- **Secure authentication** — use passwords, private keys, encrypted keys, or an SSH agent.
|
|
@@ -143,6 +144,7 @@ Passwords and private-key passphrases are prompted at launch and are never store
|
|
|
143
144
|
| `s` | Stop a container or kill a native process |
|
|
144
145
|
| `t` | Start a Docker container |
|
|
145
146
|
| `l` | Toggle live logs |
|
|
147
|
+
| `v` | Open an interactive terminal for the active host |
|
|
146
148
|
| `a` / `x` | Add or close a host tab |
|
|
147
149
|
| `h` | Return to the host selector |
|
|
148
150
|
| `q` | Quit |
|
|
@@ -188,6 +190,7 @@ Remote hosts need an SSH server and standard system utilities. Docker is only re
|
|
|
188
190
|
- [React](https://react.dev/) — declarative interface components
|
|
189
191
|
- [OpenTUI](https://opentui.com/) — native terminal renderer with React bindings
|
|
190
192
|
- [node-ssh](https://github.com/steelbrain/node-ssh) — SSH connections, commands, and log streams
|
|
193
|
+
- [xterm.js](https://xtermjs.org/) — headless terminal emulation for interactive SSH shells
|
|
191
194
|
- [Zod](https://zod.dev/) — configuration validation
|
|
192
195
|
- [VitePress](https://vitepress.dev/) — documentation site
|
|
193
196
|
|