This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-04-20
Channels
- # aws (1)
- # beginners (14)
- # boot (30)
- # cider (6)
- # clara (9)
- # cljsjs (3)
- # cljsrn (22)
- # clojure (247)
- # clojure-dusseldorf (75)
- # clojure-france (38)
- # clojure-italy (6)
- # clojure-japan (8)
- # clojure-nl (3)
- # clojure-russia (16)
- # clojure-serbia (4)
- # clojure-spec (1)
- # clojure-uk (53)
- # clojurescript (168)
- # consulting (3)
- # copenhagen-clojurians (1)
- # core-async (7)
- # css (1)
- # datascript (3)
- # datomic (8)
- # dirac (22)
- # events (1)
- # hoplon (2)
- # jobs (1)
- # jobs-discuss (2)
- # leiningen (4)
- # lumo (138)
- # mount (13)
- # nyc (1)
- # off-topic (24)
- # om (34)
- # onyx (15)
- # pedestal (30)
- # re-frame (9)
- # reagent (23)
- # ring (1)
- # ring-swagger (24)
- # rum (6)
- # spacemacs (6)
- # specter (51)
- # uncomplicate (14)
- # unrepl (1)
- # untangled (17)
- # yada (12)
@martinklepsch Yeah that’s what I’m pretty much wanting to do.
@jupl that seems counter to how boot works - would it fit your use case to copy the source to a temporary place, then rename the dir, alter the fileset and pass that on to the next task?
What's the standard procedure to get a boot bREPL session fully connected? I have an nREPL running in my server process, and I can connect to it with boot -c
, but I don't have access to js
or any of the other functions I would expect in namespaces in my code
@talexxx https://github.com/adzerk-oss/boot-cljs-repl is the place to search for documentation
There is this issue https://github.com/adzerk-oss/boot-cljs-repl/issues/49 but I don't even see locally defined vars in a namespace
> cljs-repl is the task to be used in the task pipeline whereas start-repl
is how you connect to the ClojureScript REPL once you’re in a Clojure REPL.
did you run (start-repl)
in your clojure repl @talexxx ?
I'm using a boot build file originally generating by tenzing, so I have a dev task that looks like this:
(deftask run []
(comp (serve)
(watch)
(cljs-repl)
(reload)
(build)))
So I'm connecting to whatever that task announces as its server: nREPL server started on port 52361 on host 127.0.0.1 -
same behavior to what?
after running boot repl -c -p 52361
, have you tried running (start-repl)
?
So the client needs to connect to the nREPL then start a websocket connection with start-repl
I pretty much just repeated what’s written here but maybe there’s a way it could be written more prominently
do you think it would make sense to create a PR on boot-http with a switch that would support https://github.com/sunng87/ring-jetty9-adapter ?