This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-04-26
Channels
- # aleph (5)
- # announcements (9)
- # beginners (115)
- # boot (36)
- # calva (13)
- # cider (4)
- # clara (7)
- # cljs-dev (27)
- # cljsrn (20)
- # clojure (182)
- # clojure-conj (3)
- # clojure-dev (4)
- # clojure-europe (3)
- # clojure-italy (2)
- # clojure-nl (4)
- # clojure-uk (34)
- # clojurebridge (3)
- # clojurescript (19)
- # clojureverse-ops (3)
- # core-typed (1)
- # cursive (12)
- # data-science (3)
- # datomic (16)
- # emacs (9)
- # events (5)
- # figwheel-main (11)
- # fulcro (14)
- # graphql (7)
- # jobs (10)
- # jobs-discuss (6)
- # lein-figwheel (8)
- # leiningen (2)
- # lumo (22)
- # mount (1)
- # nrepl (7)
- # off-topic (69)
- # overtone (17)
- # pathom (3)
- # quil (1)
- # re-frame (5)
- # reagent (23)
- # reitit (6)
- # remote-jobs (1)
- # rewrite-clj (4)
- # ring (38)
- # shadow-cljs (54)
- # sql (9)
- # uncomplicate (5)
- # xtdb (1)
I'd like to do the equivalent of lein repl :connect
with clj
. That is, something along the lines of clj -Sdeps '{:deps {nrepl {:mvn/version "0.6.0"} nrepl/drawbridge {:mvn/version "0.2.0"}}}' -m nrepl.cmdline --interactive --connect --url
. I think that's currently not possible, since the --url
flag doesn't exist. Would it make sense to add something like that?
...although it's pretty easy to just do something like that yourself. I pieced together a small app that connects to a Drawbridge nREPL endpoint and uses rebel-readline for the REPL stuff.
Yes, but if the Drawbridge endpoint is e.g. at http://localhost:3001/repl, host and port isn't enough, need to pass the /repl
bit as well. And anyway, connecting to a Drawbridge endpoint is done via nrepl/url-connect
, whereas nrepl.cmdline
currently uses nrepl/connect
.