@youtyan/code-viewer 0.4.1 → 0.5.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 +7 -0
- package/dist/code-viewer.js +4769 -3868
- package/package.json +1 -1
- package/web/app.js +373 -22
- package/web/index.html +3 -0
- package/web/style.css +197 -0
package/README.md
CHANGED
|
@@ -36,6 +36,13 @@ Requires Node.js 20 or newer when installed from npm. Development uses
|
|
|
36
36
|
- Read the built-in Help page for getting started, the `.code-viewer/`
|
|
37
37
|
project files, AI annotations, datastores, the agent skill, and
|
|
38
38
|
keybindings.
|
|
39
|
+
- Inspect the runtime with the Environment Doctor (right-side sheet,
|
|
40
|
+
toggled by the 🩺 icon in the header): runtime (Node / Bun / ABI),
|
|
41
|
+
`@youtyan/code-viewer` version and execution origin (npx cache vs
|
|
42
|
+
local), SQLite driver and snapshot store, Git, discovery summary,
|
|
43
|
+
Docker / Compose health (config dry-parse + `compose ps` per service),
|
|
44
|
+
and the listening port. Useful when `npx` cache mismatch (e.g.
|
|
45
|
+
`NODE_MODULE_VERSION` errors) needs a remediation hint.
|
|
39
46
|
- Open repository folders (and parent folders of files) in the OS file
|
|
40
47
|
manager, create folders, and trash/restore files from localhost-only
|
|
41
48
|
actions.
|