termweb 0.9.7 → 0.9.10
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 +19 -10
- package/native/termweb-linux-aarch64 +0 -0
- package/native/termweb-linux-aarch64.node +0 -0
- package/native/termweb-linux-x86_64 +0 -0
- package/native/termweb-linux-x86_64.node +0 -0
- package/native/termweb-macos-aarch64 +0 -0
- package/native/termweb-macos-aarch64.node +0 -0
- package/native/termweb-macos-x86_64 +0 -0
- package/native/termweb-macos-x86_64.node +0 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -13,7 +13,8 @@ https://github.com/user-attachments/assets/70b86b29-19b4-458b-8d5d-683f5e139908
|
|
|
13
13
|
|
|
14
14
|
## Demo: SDK: building apps with termweb as render engine
|
|
15
15
|
|
|
16
|
-
https://github.com/user-attachments/assets/
|
|
16
|
+
https://github.com/user-attachments/assets/50e068bd-4aa4-463e-bd7f-73e81ae51e93
|
|
17
|
+
|
|
17
18
|
|
|
18
19
|
## Features
|
|
19
20
|
|
|
@@ -176,31 +177,39 @@ Press `Ctrl+H` to enter hint mode. Yellow labels appear on all clickable element
|
|
|
176
177
|
|
|
177
178
|
Pre-built terminal applications powered by termweb:
|
|
178
179
|
|
|
179
|
-
###
|
|
180
|
+
### termweb-dashboard
|
|
181
|
+
|
|
182
|
+
System monitoring dashboard with CPU, memory, disk, network, and process views.
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
npx termweb-dashboard
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
### termweb-code
|
|
180
189
|
|
|
181
190
|
Full-featured code editor with syntax highlighting for 20+ languages.
|
|
182
191
|
|
|
183
192
|
```bash
|
|
184
|
-
npx
|
|
185
|
-
npx
|
|
193
|
+
npx termweb-code ./src/index.js
|
|
194
|
+
npx termweb-code ~/projects/app/main.py
|
|
186
195
|
```
|
|
187
196
|
|
|
188
|
-
###
|
|
197
|
+
### termweb-markdown
|
|
189
198
|
|
|
190
199
|
Markdown editor with live preview pane.
|
|
191
200
|
|
|
192
201
|
```bash
|
|
193
|
-
npx
|
|
194
|
-
npx
|
|
202
|
+
npx termweb-markdown ./README.md
|
|
203
|
+
npx termweb-markdown ~/docs/notes.md
|
|
195
204
|
```
|
|
196
205
|
|
|
197
|
-
###
|
|
206
|
+
### termweb-json
|
|
198
207
|
|
|
199
208
|
JSON editor with validation, formatting, and key sorting.
|
|
200
209
|
|
|
201
210
|
```bash
|
|
202
|
-
npx
|
|
203
|
-
npx
|
|
211
|
+
npx termweb-json ./package.json
|
|
212
|
+
npx termweb-json ~/config/settings.json
|
|
204
213
|
```
|
|
205
214
|
|
|
206
215
|
## Documentation
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "termweb",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.10",
|
|
4
4
|
"description": "Web browser in your terminal using Kitty graphics protocol. SDK for building terminal apps with web technologies.",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"cli",
|
|
24
24
|
"web"
|
|
25
25
|
],
|
|
26
|
-
"author": "
|
|
26
|
+
"author": "teamchong",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"repository": {
|
|
29
29
|
"type": "git",
|