Fork me on GitHub
#clojurescript
<
2023-10-11
>
selahb03:10:13

I'd like to develop a cljs plugin with REPL support for an closed-source electron application. Plugins have full access to the node and electron APIs, but the app itself starts/owns the node process. So I believe I need to manually start the node side (eval env) of the repl connection in my cljs project. For a browser, apparently this would be done like this:

(ns foo
  (:require [clojure.browser.repl :as repl]))
(repl/connect "")
but I can't find any instructions on how the same is done within a node script.