gpt4 book ai didi

clojure - 将 Cider 连接到 Luminus +CLJS Figwheel repl

转载 作者:行者123 更新时间:2023-12-02 11:22:32 25 4
gpt4 key购买 nike

我过去对 Cider REPL 的使用非常简单;在项目的 clj 文件中,我使用 cider-jack-in 并且我很高兴(假设我的 .lein/profiles.clj

中有以下内容)
;; ~/.lein/profiles.clj
{:user {:plugins [[lein-localrepo "0.5.2"]
[cider/cider-nrepl "0.10.0-SNAPSHOT"]]
:dependencies [[org.clojure/tools.nrepl "0.2.7"]]
}}

现在开箱即用:

<user> Clojure/ 17:44$ lein new luminus wants-cider +cljs
Generating a Luminus project.
<user> Clojure/ 17:45$ cd wants-cider/
<user> wants-cider/ 17:45$ lein run
15-Sep-17 17:45:59 user-linuxbox INFO [wants-cider.core] - nREPL server started on port 7000
15-Sep-17 17:45:59 user-linuxbox INFO [wants-cider.handler] -
-=[wants-cider started successfully using the development profile]=-
17:45:59.789 INFO [org.projectodd.wunderboss.web.Web] (main) Registered web context /
15-Sep-17 17:45:59 user-linuxbox INFO [wants-cider.core] - server started on port: 3000

# new shell
<user> wants-cider/ 17:50$ lein figwheel
Figwheel: Starting server at http://localhost:3449
Focusing on build ids: app
Compiling "resources/public/js/app.js" from ["src-cljs" "env/dev/cljs"]...
Successfully compiled "resources/public/js/app.js" in 5.757 seconds.
Started Figwheel autobuilder
WARNING: unable to load "cemerick.piggieback/wrap-cljs-repl" middleware

Launching ClojureScript REPL for build: app

# ... insructions ...

Prompt will show when figwheel connects to your application
To quit, type: :cljs/quit
cljs.user=>

从这里,我如何连接我的 Cider REPL?

最佳答案

您必须在 project.clj:profiles :dev 部分指定 Figwheel nrepl 选项:

 :profiles {:dev {
;; ....
:figwheel {:nrepl-port 7888 }

然后从 CIDER 连接到 nrepl:

C-c M-c <or> M-x cider-connect
;; enter figwheel host, port, in this case -- localhost, 7888
;; then, in appeared REPL buffer:
user> (use 'figwheel-sidecar.repl-api)
user> (cljs-repl)
cljs.user=>

信息: https://github.com/bhauman/lein-figwheel/wiki/Using-the-Figwheel-REPL-within-NRepl

关于clojure - 将 Cider 连接到 Luminus +CLJS Figwheel repl,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32641800/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com