termweb-dashboard 0.2.1 → 0.2.2

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 +48 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # termweb-dashboard
2
+
3
+ Terminal-based system monitoring dashboard powered by [termweb](https://github.com/teamchong/termweb).
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install -g termweb-dashboard
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```bash
14
+ termweb-dashboard
15
+ ```
16
+
17
+ Opens a real-time system monitoring dashboard in your terminal with:
18
+
19
+ - **CPU** - Per-core usage with live chart
20
+ - **Memory** - RAM and swap usage
21
+ - **Disk** - Storage usage with folder treemap (keyboard navigable)
22
+ - **Network** - Traffic by remote host with DNS lookup
23
+ - **Processes** - Top processes by CPU/memory
24
+
25
+ ## Requirements
26
+
27
+ - Terminal with [Kitty graphics protocol](https://sw.kovidgoyal.net/kitty/graphics-protocol/) support (Kitty, WezTerm, etc.)
28
+ - macOS or Linux
29
+
30
+ ## Keyboard Controls
31
+
32
+ **Disk view:**
33
+ - `Arrow keys` - Navigate folders
34
+ - `Enter` - Drill into folder
35
+ - `Backspace` - Go up one level
36
+
37
+ **Process view:**
38
+ - `Arrow keys` - Select process
39
+ - `Tab` - Change sort column
40
+ - `Ctrl+K` - Kill selected process
41
+
42
+ **General:**
43
+ - `Escape` - Return to main view
44
+ - `Ctrl+Q` - Quit
45
+
46
+ ## License
47
+
48
+ MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "termweb-dashboard",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Terminal-based system monitoring dashboard powered by termweb",
5
5
  "bin": {
6
6
  "termweb-dashboard": "bin/cli.js"