exocore-docs / docs /editor /04-editor-console.md
ChoruYt's picture
Upload 151 files
dc2b30a verified
|
Raw
History Blame Contribute Delete
1.09 kB

04 — Console pane

ConsolePane.tsx shows the project runtime's stdout / stderr stream. The Start / Stop button calls routes/editor/runtime.ts which spawns the configured exocore.run script and pipes the output back over Server-Sent Events.

Screenshots

Desktop Mobile
04 — Console pane — desktop 04 — Console pane — mobile

What it does

  • Console is runtime output — it's separate from the terminal (which is an interactive pty).

  • The desktop screenshot was captured mid-run; the mobile shot intentionally shows the empty pane (running the dev server inside the headless mobile profile detaches the page session).

  • The Stop button sends SIGTERM first then SIGKILL after a 3s grace period.

    Source files

  • routes/editor/runtime.ts


    ← Back to the editor index.