Fork me on GitHub
#figwheel-main
<
2019-07-08
>
dimovich08:07:29

is there any project that does code auto-reloading for clojure the same way figwheel does for clojurescript?

hkjels10:07:18

I think figwheel supports clj as well

dimovich12:07:26

@U0B1SDL67 thanks for the tip!

dimovich12:07:19

but I think it reloads only clj files that contain macros required by the cljs files. I'm wondering if you can watch only clj files bypassing any cljs file compilation.

practicalli-johnny15:07:10

For a back-end web application with ring, there is middleware called wrap-reload that injects changes into your web-app

dimovich18:07:50

@U05254DQM thank you! taking a look.

dimovich18:07:44

wrap-reload is using ns-tracker which seems to be what I was looking for.

practicalli-johnny22:07:55

Ah, good to know. I thought wrap-reload might have something you could use. I will have a look at ns-tracker, sounds interesting. Thanks.