Fork me on GitHub
#cider
<
2020-08-19
>
ozzloy05:08:27

i'm new to cider. i am trying to use cider with biff example project. i tried: git clone https://github.com/jacobobryant/biff biff1

ozzloy05:08:27

cd biff1/example ./task setup ./task dev open localhost:9630 builds -> app emacs biff1/example/src/example/client/app.cljs M-x cider-jack-in-cljs and i get the error message: > error in process sentinel: Could not start nREPL server: shadow-cljs - config: /home/ozzloy/src/clojure-explorations/biff-stuff/biff1/example/shadow-cljs.edn > shadow-cljs - connected to server > server already running

ozzloy05:08:15

how do i get to (js/alert "hi")?

ozzloy05:08:18

i've also tried killing ./task dev and then doing cider-jack-in-cljs

ozzloy05:08:15

which command should be used? shadow-cljs. ClojureScript REPL type shadow, shadow-cljs build app. Visit localhost:9630 in a browser? y. then i get this output: https://wtools.io/paste-code/b1OJ

Juan A. Sanchez12:08:19

Anyone has any good example/blog post on using cider with docker?

zane16:08:20

No, but the key bit is just making sure that relevant ports are available from outside the container.

zane16:08:44

Once you’ve got that taken care of everything just seems to work, at least in my experience.

Juan A. Sanchez16:08:06

@U050CT4HR So if I do a cider-connect and give it a port it will inject the libraries it needs?

zane16:08:10

Oh, I’m not sure. The last time I tried it was back before auto-injection.

Sam Heaton14:08:47

Quick question if anyone knows: Is it expected behaviour for a clojure.lang.Compiler$CompilerException ("No reader function for tag dbg") to be thrown when trying to compile (C-c C-k) a buffer with a #dbg annotation on a function for debugging?

dpsutton14:08:30

not expected. those tags are defined in cider-nrepl. are you sure you have cider-nrepl on your classpath?

Sam Heaton14:08:14

I'm connecting to an external Boot repl via CIDER.. although the CIDER version the Boot command is using is 0.21.1.. that may be the problem

dpsutton14:08:12

does the boot repl have cider-nrepl on the classpath?

Sam Heaton14:08:30

I believe so

boot -d nrepl\:0.6.0 \                    
     -d cider/cider-nrepl\:0.21.1 \
[...]

Sam Heaton14:08:46

I'm not sure if I can boost the cider-nrepl version due to some old middleware in the project, but I'll try that

dpsutton14:08:55

the #dbg data reader has been there since about 0.10.0 so it should be there. check whats in *data-readers*

👍 3
Sam Heaton14:08:33

Hmm, ok. Thank you!

dpsutton14:08:34

then you are missing some things. can you verify that cider-nrepl is on your classpath?

dpsutton14:08:43

and not just what you think the startup command is but find it on the path

dpsutton14:08:08

(apropos "cider") should be sufficient

Sam Heaton14:08:48

Had to qualify the apropos namespace (weird) but here's the result

(cider.nrepl/cider-middleware
cider.nrepl/cider-nrepl-handler
cider.nrepl.middleware.out/cider.nrepl.middleware.out.proxy$java.io.OutputStream$ff19274a
cider.nrepl.middleware.out/cider.nrepl.middleware.out.proxy$java.io.Writer$ff19274a
cider.nrepl.middleware.out/cider.nrepl.middleware.out.proxy$java.util.TimerTask$ff19274a
cider.nrepl.middleware.util.cljs/cider-piggieback?cider.nrepl.version/cider-version-reply

[bunch of internal stuff])

Sam Heaton14:08:14

The internal stuff is not Cider related, but has the word "decider" in it so..

dpsutton14:08:39

gotcha. this is interesting. i'd google for boot and data-readers. wonder if there's a bug

Sam Heaton14:08:45

Oof. Thank you. Good find

Sam Heaton14:08:16

Looks like I'll have to update the build.boot. Thank you! This turned out to be more complicated than I expected

zackteo14:08:18

Hi guys, does anyone configure their .clojure/deps.edn for use with CIDER? Was trying to figure REBL out and that led me to https://github.com/seancorfield/dot-clojure/blob/develop/deps.edn which I don't think is exactly very relevant ... I can't tell.

dpsutton14:08:49

cider uses its own main to start up the nrepl server with the correct middleware. REBL uses a main to set itself up. there is a middleware to use both at the same time but i've never done it. you shouldn't need to configure deps.edn to work with CIDER. if starting up a deps.edn backed project CIDER knows how to inject its dependencies and start up correctly

zackteo14:08:16

I see I see. Do many people integrate REBL into their workflow actually? Have been trying to understand it

rickmoynihan13:08:36

You can use my nrebl middleware to do this: https://github.com/RickMoynihan/nrebl.middleware I’ve been meaning to contribute it to cider for a while, but never quite got around it

dpsutton14:08:34

i have no idea about how many people use it. i know of one vocal advocate of sean corfield. it seems like its built for socket repls mostly. You could also perhaps start up an nrepl server manually in a dev namespace and let REBL start the way it likes but i'm not sure if this will limit its functionality

zackteo14:08:44

I see I see! 😮

jumar18:08:59

Give cider inspector a try and you might not need REBL at all

practicalli-johnny22:08:48

@zackteo I have a ~/.clojue/deps.edn configuration that includes several data browsers, REBL, Portal and Reveal. https://github.com/practicalli/clojure-deps-edn I mainly use the cider-inspector though, its excellent for navigating through data structures, especially nested data structures and paging through larger data sets (really useful for data science). Its also much simpler to use. https://practicalli.github.io/spacemacs/evaluating-clojure/inspect.html