homelab-tui 2.2.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.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -35,7 +35,7 @@
35
35
  <a href="https://github.com/ACHRAF-YOUSSEF/homelab-tui/issues">Issues</a>
36
36
  </p>
37
37
 
38
- ![homelab-tui service monitoring and live logs](assets/logs.png)
38
+ ![homelab-tui multi-host tabs with service monitoring and live logs](assets/logs.png)
39
39
 
40
40
  homelab-tui connects to Linux, macOS, and Windows hosts over SSH, discovers Docker containers and native services, displays system metrics and logs, and provides guarded service controls from one terminal.
41
41
 
@@ -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.
@@ -138,11 +139,12 @@ Passwords and private-key passphrases are prompted at launch and are never store
138
139
  | `/` | Search services |
139
140
  | `f` | Cycle filters |
140
141
  | `o` | Cycle sorting |
141
- | `r` | Restart the selected service, or retry the focused offline host |
142
+ | `r` | Restart the selected service, or reconnect the focused offline host |
142
143
  | `c` | Reopen the credential prompt for the focused host |
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "homelab-tui",
3
- "version": "2.2.0",
3
+ "version": "2.4.0",
4
4
  "description": "Terminal UI for monitoring a remote homelab server over SSH",
5
5
  "homepage": "https://github.com/ACHRAF-YOUSSEF/homelab-tui",
6
6
  "repository": {