Fork me on GitHub
#cider
<
2021-09-21
>
plexus10:09:39

something I brewed up to help with all the nrepl/cider work I've been doing lately https://github.com/lambdaisland/nrepl-proxy

bananadance 4
plexus10:09:21

pretty basic but I've wanted something like this for a long time. Eventually I think this may get a proper UI but for now this is a good starting point, just customize to get the output you care about.

thheller16:09:10

can confirm that something like that is immensely useful to make sense of nrepl. I have something similar to this in shadow-cljs. just never made a lib out of it 😛 https://github.com/thheller/shadow-cljs/blob/master/src/main/shadow/nrepl_debug.clj

Benjamin17:09:58

:aliases {
           :dev {:extra-deps {org.clojure/test.check {:mvn/version "0.9.0"}}}}
if I put sth like this in my deps.edn how do I start cider with dev ?

lispers-anonymous23:09:27

I put something like this in a file called .dir-locals.el inside the project directory I'm working with

((clojure-mode . ((cider-clojure-cli-global-options . "-A:dev:another-alias"))))

Benjamin08:09:59

yea that is nice thanks