如何从clj
命令启动 nREPL?
我无法使用 Lein 或 Boot 运行我的项目,因为我在某处有一个不平衡的括号,并且读者抱怨 `java.lang.RuntimeException: read-cond 从第 13 行开始需要偶数个表单。
如何从clj
命令启动 nREPL?
我无法使用 Lein 或 Boot 运行我的项目,因为我在某处有一个不平衡的括号,并且读者抱怨 `java.lang.RuntimeException: read-cond 从第 13 行开始需要偶数个表单。
现在的事情比发布问题时要容易:
$ clj -Sdeps '{:deps {nrepl/nrepl {:mvn/version "0.5.3"}}}' -m nrepl.cmdline
更多细节在这里。
写了一个关于如何做到这一点的要点:
clj -Sdeps '{:deps {org.clojure/tools.nrepl {:mvn/version "0.2.12"}}}'
Clojure 1.9.0
user=> (use '[clojure.tools.nrepl.server :only (start-server stop-server)])
nil
user=> (defonce server (start-server :port 7888))
#'user/server
现在您可以使用远程 REPL 客户端连接到端口 7888。可能有一种方法可以在一行中做到这一点。