ssh-x-term 0.0.32 → 0.0.34
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 +14 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# SSH-X-Term
|
|
2
2
|
|
|
3
|
+
<p>
|
|
4
|
+
<picture>
|
|
5
|
+
<source media="(prefers-color-scheme: dark)" srcset="./logo.svg" width="240">
|
|
6
|
+
<source media="(prefers-color-scheme: light)" srcset="./logo.svg" width="240">
|
|
7
|
+
<img alt="SSH-X-Term Logo" src="./logo.svg" width="240">
|
|
8
|
+
</picture>
|
|
9
|
+
<br>
|
|
10
|
+
<a href="https://github.com/eugeniofciuvasile/ssh-x-term/releases"><img src="https://img.shields.io/github/v/release/eugeniofciuvasile/ssh-x-term?style=flat-square" alt="Latest Release"></a>
|
|
11
|
+
<a href="https://github.com/eugeniofciuvasile/ssh-x-term/actions"><img src="https://github.com/eugeniofciuvasile/ssh-x-term/actions/workflows/go.yml/badge.svg" alt="Build Status"></a>
|
|
12
|
+
<a href="https://github.com/eugeniofciuvasile/ssh-x-term/stargazers"><img src="https://img.shields.io/github/stars/eugeniofciuvasile/ssh-x-term?style=flat-square" alt="GitHub Stars"></a>
|
|
13
|
+
<a href="https://github.com/eugeniofciuvasile/ssh-x-term/blob/main/LICENSE"><img src="https://img.shields.io/github/license/eugeniofciuvasile/ssh-x-term?style=flat-square" alt="License"></a>
|
|
14
|
+
</p>
|
|
15
|
+
|
|
3
16
|
SSH-X-Term is a powerful terminal-based SSH client with a TUI (Text User Interface) built on [Bubble Tea](https://github.com/charmbracelet/bubbletea).
|
|
4
17
|
It lets you manage SSH connections, securely store credentials using Bitwarden, and connect to remote servers with both password and key-based authentication.
|
|
5
18
|
Cross-platform features include support for passh (Unix), plink.exe (Windows), and full tmux integration.
|
|
@@ -123,7 +136,7 @@ The npm installer also attempts to install required dependencies (`bw`, `passh`,
|
|
|
123
136
|
|
|
124
137
|
### Option 2: Build from source
|
|
125
138
|
|
|
126
|
-
Ensure you have **Go 1.
|
|
139
|
+
Ensure you have **Go 1.24+** installed. You can use either the Go from your package manager or [install manually](https://go.dev/dl/).
|
|
127
140
|
If you manually install Go, add the following to your shell config (`~/.bashrc`, `~/.zshrc`, etc.):
|
|
128
141
|
|
|
129
142
|
```sh
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ssh-x-term",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.34",
|
|
4
4
|
"description": "TUI to handle multiple SSH connections simultaneously",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -33,7 +33,8 @@
|
|
|
33
33
|
"homepage": "https://github.com/eugeniofciuvasile/ssh-x-term#readme",
|
|
34
34
|
"os": [
|
|
35
35
|
"linux",
|
|
36
|
-
"darwin"
|
|
36
|
+
"darwin",
|
|
37
|
+
"win32"
|
|
37
38
|
],
|
|
38
39
|
"engines": {
|
|
39
40
|
"node": ">=14.0.0"
|