termites 1.0.31 → 1.0.32
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 +25 -42
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Termites
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Local multi-terminal manager with web interface.
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
npm install -g termites
|
|
@@ -9,58 +9,41 @@ npm install -g termites
|
|
|
9
9
|
## Architecture
|
|
10
10
|
|
|
11
11
|
```
|
|
12
|
-
|
|
13
|
-
│
|
|
14
|
-
│
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
│
|
|
19
|
-
│
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
```bash
|
|
26
|
-
npm install -g termites
|
|
12
|
+
┌─────────────────────────────────────────────────────┐
|
|
13
|
+
│ Server │
|
|
14
|
+
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
|
|
15
|
+
│ │ Terminal│ │ Terminal│ │ Terminal│ ... │
|
|
16
|
+
│ │ (PTY) │ │ (PTY) │ │ (PTY) │ │
|
|
17
|
+
│ └─────────┘ └─────────┘ └─────────┘ │
|
|
18
|
+
│ │ │
|
|
19
|
+
│ WebSocket + HTTP │
|
|
20
|
+
└─────────────────────┼───────────────────────────────┘
|
|
21
|
+
│
|
|
22
|
+
▼
|
|
23
|
+
Browser
|
|
27
24
|
```
|
|
28
25
|
|
|
29
26
|
## Usage
|
|
30
27
|
|
|
31
|
-
### Start Server
|
|
32
|
-
|
|
33
28
|
```bash
|
|
34
|
-
|
|
35
|
-
|
|
29
|
+
# Start server (default port 6789)
|
|
30
|
+
termites
|
|
36
31
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
To use a different port:
|
|
40
|
-
|
|
41
|
-
```bash
|
|
42
|
-
PORT=8080 termites server
|
|
32
|
+
# Or with custom port
|
|
33
|
+
PORT=8080 termites
|
|
43
34
|
```
|
|
44
35
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
# Connect to localhost:6789
|
|
49
|
-
termites client
|
|
50
|
-
|
|
51
|
-
# Connect to a remote server
|
|
52
|
-
termites client 192.168.1.100:6789
|
|
53
|
-
termites client ws://example.com:6789
|
|
54
|
-
```
|
|
36
|
+
Open browser at `http://localhost:6789`
|
|
55
37
|
|
|
56
38
|
## Features
|
|
57
39
|
|
|
58
|
-
- Multi-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
62
|
-
-
|
|
63
|
-
-
|
|
40
|
+
- **Multi-terminal** - Create and manage multiple terminals from one web interface
|
|
41
|
+
- **Auto hostname detection** - Panel updates automatically when SSH to different machines
|
|
42
|
+
- **Mobile-friendly** - Touch support, virtual keyboard buttons, long-press to select
|
|
43
|
+
- **History scrollback** - iTerm-like history overlay (scroll up or tap Hist button)
|
|
44
|
+
- **Themes** - Solarized Light/Dark, Monokai, Dracula, Nord, GitHub Dark
|
|
45
|
+
- **Customizable** - Font family, font size, toolbar visibility
|
|
46
|
+
- **Password protection** - Set password on first visit
|
|
64
47
|
|
|
65
48
|
## License
|
|
66
49
|
|