This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-06-21
Channels
- # announcements (9)
- # beginners (222)
- # boot (11)
- # calva (40)
- # cider (1)
- # clj-kondo (10)
- # cljs-dev (1)
- # cljsrn (8)
- # clojars (4)
- # clojure (50)
- # clojure-dev (4)
- # clojure-ecuador (1)
- # clojure-europe (4)
- # clojure-italy (3)
- # clojure-madison (2)
- # clojure-nl (26)
- # clojure-spec (86)
- # clojure-uk (34)
- # clojurescript (11)
- # clr (1)
- # cursive (46)
- # datomic (19)
- # emacs (4)
- # events (1)
- # fulcro (22)
- # graalvm (4)
- # graphql (2)
- # jobs-discuss (40)
- # leiningen (10)
- # luminus (6)
- # nrepl (7)
- # off-topic (18)
- # onyx (6)
- # overtone (1)
- # pedestal (2)
- # planck (1)
- # re-frame (5)
- # reagent (3)
- # reitit (8)
- # rewrite-clj (2)
- # shadow-cljs (139)
- # sql (4)
- # tools-deps (42)
FYI - https://metaredux.com/posts/2019/06/21/nrepl-0-7-introducing-a-native-edn-transport.html
4
❤️ 8
I tried:
» clj -Sdeps '{:deps {nrepl {:mvn/version "0.7.0-alpha1"}}}'
Clojure 1.10.0
user=> (require '[nrepl.server :refer [start-server stop-server]])
nil
user=> (defonce server (start-server :bind "localhost" :port 4001))
and then from emacs (with Cider 0.21.0): M-x cider-jack-in
When typing (+ 1 1)
in the resulting REPL I get:
error in process filter: 'nil' requires the nREPL op "classpath" (provided by cider-nrepl)
and the resulting “ticker” running foreveralso happens with nrepl 0.6.0
(the result never gets printed)
@stathissideris I think this was a bug that’s fixed on the current master
of CIDER. Basically it didn’t work without cider-nrepl without that fix.
ok, thanks, good to know 🙂