shadow-cljs

https://github.com/thheller/shadow-cljs | https://github.com/sponsors/thheller | https://www.patreon.com/thheller
pithyless 2020-09-02T10:50:34.031100Z

@dazld I do just that, by starting a second shadow-cljs instance on the server-side. If you're running some kind of component system, you can hook up as just another start/stop component 🙂

pithyless 2020-09-02T10:52:28.031300Z

(:require [shadow.cljs.devtools.server :as shadow-server])

(defn start-shadow-inspect []
  (println "Starting shadow-server...")
  (shadow-server/start!))
^ It will find an open port and print on what port it started.