Description
Is your feature request related to a problem? Please describe.
When developing interactively on the REPL, is essential for the user to observe the serve responses.
nbb can use javascript packages that sent their text output to the console. When interacting on nREPL, console output is sent to the server stdout/stderr streams, which are not forwarded to the nREPL client, thus the user is likely to miss important output information.
For example if we were to jack-in to nbb with cider on a project with puppeteer installed and eval the following
(ns issue
(:require ["puppeteer$default" :as puppeteer]
[promesa.core :as p]))
(p/let [browser (.launch puppeteer #js {:headless false})
page (.newPage browser)]
(.goto page "https://clojure.org")
(.waitForSelector page "xyz" #js {:timeout 1000}))
puppeteer
will log to the console that Waiting for selector `xyz` failed: Waiting failed: 1000ms exceeded
, but there will be nothing displayed on the user nREPL client, so they will not be aware that something has gone wrong (this information will be printed in the *nrepl-server ...*
buffer, but users are most unlikely to monitor this buffer).
Describe the solution you'd like
Either intercept and replicate all js console output or stdout/stderr streams to the nREPL client, possibly using print
.
Describe alternatives you've considered
Replace console.log/err fn with ones that use println
.
Happy to have a look if a solution is agreed.
Thanks