daeb.ug
v0.0.33
Published
👾 Daebug Remote REPL
Downloads
41
Readme
👾DAEBUG: Remote REPL
A file-based REPL for running JavaScript code in live pages. The server watches per-instance Markdown files under daebug/ and sends code to connected pages for execution.
How it works
- Start the server:
npm start - Open a page at
http://localhost:8302/— the client injects and polls the server - Create a file under
daebug/with a fenced code block and the canonical footer - The server runs the code and writes the result back into the same file
File structure
daebug.md— registry of connected pages (server-managed)daebug/— per-instance chat logs; agents create these filesjs/— Node.js server modules
The server does NOT create daebug/ or per-instance files. Agents (editors, CLI) must create them.
Mission Statement: REPL for LLM debugging
Implementation spec: Per-instance chat logs and server behavior
