luminus-framework / luminus-framework/luminus

WARNING: CIDER requires cider-nrepl to be fully fuctional. Many things will not work without it!

Open
#230 3 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
CSS
Stars
626
Forks
122
PR merge metrics
No merged PRs in 30d

Description

Hello~ I'm using luminus framework with +re-frame +postgres.

I also use emacs with cider.

The step through the warning is like this :

in terminal:
```
lein run
```
```
lein figwheel
```
and then in emacs:
```
M-x cider-connect localhost 7002
```
now I got this warning messages in repl
```
WARNING: CIDER requires cider-nrepl to be fully fuctional. Many things will not work without it!
More information.
WARNING: clj-refactor and refactor-nrepl are out of sync.
Their versions are 2.4.0 (package: 20180826.2149) and n/a, respectively.
You can mute this warning by changing cljr-suppress-middleware-warnings.
```

This is just WARNING so I don't have crucial problem with that, but I wanted to jump to the source code with ``key but I couldn't.
The reason I guess is the first warning message and I tried to add the cider-nrepl as many as possible but I still get the same warning message.
I guess something's wrong with port 7002(figwheel), it might not compatiable with cider-nrepl.

I'm not really sure this is the right place to ask but I wonder somehow you can answer me!

I'm adding my `project.clj` and `profiles.clj`(located in ~/.lein/)

project.clj:
```
(defproject frame "0.1.0-SNAPSHOT"

:description "FIXME: write description"
:url "http://example.com/FIXME"

:dependencies [[baking-soda "0.2.0" :exclusions [cljsjs/react-bootstrap]]
[cheshire "5.8.1"]
[clj-commons/secretary "1.2.4"]
[cljs-ajax "0.8.0"]
[cljsjs/react-popper "0.10.4-0"]
[cljsjs/react-transition-group "2.4.0-0"]
[clojure.java-time "0.3.2"]
[com.cognitect/transit-clj "0.8.313"]
[compojure "1.6.1"]
[conman "0.8.3"]
[cprop "0.1.13"]
[day8.re-frame/http-fx "0.1.6"]
[funcool/struct "1.3.0"]
[luminus-immutant "0.2.5"]
[luminus-migrations "0.6.3"]
[luminus-transit "0.1.1"]
[luminus/ring-ttl-session "0.3.2"]
[markdown-clj "1.0.5"]
[metosin/muuntaja "0.6.3"]
[metosin/ring-http-response "0.9.1"]
[mount "0.1.15"]
[nrepl "0.5.3"]
[org.clojure/clojure "1.10.0"]
[org.clojure/clojurescript "1.10.439" :scope "provided"]
[org.clojure/tools.cli "0.4.1"]
[org.clojure/tools.logging "0.4.1"]
[org.postgresql/postgresql "42.2.5"]
[org.webjars.bower/tether "1.4.4"]
[org.webjars/bootstrap "4.2.1"]
[org.webjars/font-awesome "5.6.1"]
[org.webjars/webjars-locator "0.34"]
[re-frame "0.10.6"]
[reagent "0.8.1"]
[ring-webjars "0.2.0"]
[ring/ring-core "1.7.1"]
[ring/ring-defaults "0.3.2"]
[selmer "1.12.5"]
[bouncer "1.0.0"]
;[cider/cider-nrepl "0.20.0"]
]

:min-lein-version "2.0.0"

:source-paths ["src/clj" "src/cljs" "src/cljc"]
:test-paths ["test/clj"]
:resource-paths ["resources" "target/cljsbuild"]
:target-path "target/%s/"
:main ^:skip-aot frame.core

:plugins [[lein-cljsbuild "1.1.7"]
[lein-immutant "2.1.0"]
]
:clean-targets ^{:protect false}
[:target-path [:cljsbuild :builds :app :compiler :output-dir] [:cljsbuild :builds :app :compiler :output-to]]
:figwheel
{:http-server-root "public"
:server-logfile "log/figwheel-logfile.log"
:nrepl-port 7002
:css-dirs ["resources/public/css"]
:nrepl-middleware [cider.piggieback/wrap-cljs-repl]}

:profiles
{:uberjar {:omit-source true
:prep-tasks ["compile" ["cljsbuild" "once" "min"]]
:cljsbuild
{:builds
{:min
{:source-paths ["src/cljc" "src/cljs" "env/prod/cljs"]
:compiler
{:output-dir "target/cljsbuild/public/js"
:output-to "target/cljsbuild/public/js/app.js"
:source-map "target/cljsbuild/public/js/app.js.map"
:optimizations :advanced
:pretty-print false
:infer-externs true
:closure-warnings
{:externs-validation :off :non-standard-jsdoc :off}
:externs ["react/externs/react.js"]}}}}


:aot :all
:uberjar-name "frame.jar"
:source-paths ["env/prod/clj"]
:resource-paths ["env/prod/resources"]}

:dev [:project/dev :profiles/dev]
:test [:project/dev :project/test :profiles/test]

:project/dev {:jvm-opts ["-Dconf=dev-config.edn"]
:dependencies [[binaryage/devtools "0.9.10"]
[cider/piggieback "0.3.10"]
[doo "0.1.11"]
[expound "0.7.2"]
[figwheel-sidecar "0.5.18"]
[pjstadig/humane-test-output "0.9.0"]
[prone "1.6.1"]
[re-frisk "0.5.4"]
[ring/ring-devel "1.7.1"]
[ring/ring-mock "0.3.2"]]
:plugins [[com.jakemccrary/lein-test-refresh "0.23.0"]
[lein-doo "0.1.11"]
[lein-figwheel "0.5.18"]
]
:cljsbuild
{:builds
{:app
{:source-paths ["src/cljs" "src/cljc" "env/dev/cljs"]
:figwheel {:on-jsload "frame.core/mount-components"}
:compiler
{:main "frame.app"
:asset-path "/js/out"
:output-to "target/cljsbuild/public/js/app.js"
:output-dir "target/cljsbuild/public/js/out"
:source-map true
:optimizations :none
:pretty-print true
:closure-defines {"re_frame.trace.trace_enabled_QMARK_" true}
:preloads [re-frisk.preload]}}}}



:doo {:build "test"}
:source-paths ["env/dev/clj"]
:resource-paths ["env/dev/resources"]
:repl-options {:init-ns user}
:injections [(require 'pjstadig.humane-test-output)
(pjstadig.humane-test-output/activate!)]}
:project/test {:jvm-opts ["-Dconf=test-config.edn"]
:resource-paths ["env/test/resources"]
:cljsbuild
{:builds
{:test
{:source-paths ["src/cljc" "src/cljs" "test/cljs"]
:compiler
{:output-to "target/test.js"
:main "frame.doo-runner"
:optimizations :whitespace
:pretty-print true}}}}

}
:profiles/dev {}
:profiles/test {}})
```

profiles.clj:
```
{:repl {:plugins [[refactor-nrepl "2.4.0"]
[cider/cider-nrepl "0.20.0"]]}}
```

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with project.clj and profiles.clj, focusing on the CIDER, refactor-nrepl, Piggieback, Figwheel, and nREPL configuration around port 7002. Reproduce the connection using lein run, lein figwheel, and M-x cider-connect, then determine whether the warnings and failed M-. behavior are resolved.

Written by the indexing model from the issue text.

Assessment

Tech stack
clojure, emacs, postgresql
Domain
developer-experience, tooling
Issue type
Bug
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.