webtty 1.0.0 → 1.1.1
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 +11 -0
- package/dist/cli/index.js +2344 -0
- package/dist/cli/index.js.map +20 -0
- package/dist/server/index.js +690 -0
- package/dist/server/index.js.map +19 -0
- package/package.json +4 -3
- package/dist/cli.js +0 -44
- package/dist/cli.js.map +0 -10
- package/dist/server.js +0 -381
- package/dist/server.js.map +0 -14
package/README.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
1
|
# webtty
|
|
2
2
|
|
|
3
3
|
A web TTY for running CLI/TUI applications in a browser tab, across platforms.
|
|
4
|
+
|
|
5
|
+
## Debugging
|
|
6
|
+
|
|
7
|
+
Build emits source maps (`dist/**/*.js.map`), so you can debug against the built output directly — no minification, original TypeScript line numbers preserved.
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
bun run build
|
|
11
|
+
bun --inspect run dist/server/index.js
|
|
12
|
+
# or
|
|
13
|
+
node --inspect dist/server/index.js
|
|
14
|
+
```
|