簡體   English   中英

將蘋果酒連接到Luminus + CLJS Figwheel repl

[英]Connect Cider to Luminus +CLJS Figwheel repl

我過去使用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?

您必須在以下內容中指定figwheel nrepl選項:profiles :dev project.clj :profiles :dev部分:

 :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=> 

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

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM