If you would like to send every REPL eval to Portal, you can use the
portal.nrepl/wrap-portal
nrepl middleware.
Note You will also need to invoke
(add-tap portal.api/submit)
for eval results to show up in portal.
The main advantage of using this middleware is that it can capture additional information about your REPL interaction, such as:
Warning Portal will keep all evaluated objects from being garbage collected until they are cleared from the UI. However, the nREPL middleware will only submit values to Portal when the UI is open.
If you are starting nrepl from tools.deps, you can try the following:
;; deps.edn
{:aliases
{:nrepl
{:extra-deps
{cider/cider-nrepl {:mvn/version "0.28.5"}
djblue/portal {:mvn/version "0.33.0"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware"
"[cider.nrepl/cider-middleware,portal.nrepl/wrap-portal]"]}}}
If you are using shadow-cljs, you can add the middleware via the
shadow-cljs.edn
file:
;; shadow-cljs.edn
{:nrepl {:middleware [portal.nrepl/wrap-portal]}}
If you are starting nrepl via lein repl
, you can try the following:
(defproject app "0.1.0-SNAPSHOT"
:dependencies [[djblue/portal "0.33.0"]]
:repl-options {:nrepl-middleware [portal.nrepl/wrap-portal]})
Or via a dev profile:
(defproject app "0.1.0-SNAPSHOT"
:profiles
{:dev {:source-paths ["dev"]
:dependencies [[djblue/portal "0.33.0"]]
:repl-options
{:nrepl-middleware [portal.nrepl/wrap-portal]}}})
If you would like to process eval results, you can do so with a custom tap handler, such as the following:
(require '[portal.api :as p])
(defn submit [value]
(if (-> value meta :portal.nrepl/eval)
(let [{:keys [stdio report result]} value]
(when stdio (p/submit stdio))
(when report (p/submit report))
(p/submit result))
(p/submit value)))
(add-tap submit)
Note An expression that results in
:portal.api/ignore
will not be tapped by theportal.nrepl
middleware.
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close