figwheel-main

figwheel-main http://figwheel.org
2019-07-08T08:41:35.019700Z

Hello all

2019-07-08T08:42:29.020900Z

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

2019-07-08T10:54:18.021700Z

I think figwheel supports clj as well

2019-07-08T12:54:26.022200Z

@hkjels thanks for the tip!

2019-07-08T12:55:19.022400Z

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-john 2019-07-08T15:49:10.025Z

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

2019-07-08T18:08:50.025200Z

@jr0cket thank you! taking a look.

2019-07-08T18:24:44.025500Z

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

practicalli-john 2019-07-08T22:39:55.025700Z

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.