This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2019-01-13
Channels
- # announcements (2)
- # beginners (29)
- # boot (122)
- # cider (9)
- # clara (6)
- # cljs-dev (9)
- # clojure (27)
- # clojure-art (3)
- # clojure-dusseldorf (5)
- # clojure-europe (1)
- # clojure-india (2)
- # clojure-losangeles (1)
- # clojure-spec (29)
- # clojure-uk (2)
- # clojurescript (56)
- # cursive (11)
- # datomic (9)
- # fulcro (8)
- # liberator (1)
- # off-topic (2)
- # other-lisps (1)
- # quil (37)
- # re-frame (2)
- # reitit (1)
- # ring (4)
- # test-check (4)
- # tools-deps (3)
@seancorfield What is your flow during developing? Just [ring.middleware.reload :refer [wrap-reload]]
or do you have something extra?
@kwladyka I evaluate code directly into the running application as I'm developing it. I don't need the app to "reload on save".
I actually don't like the reload-on-save and run-tests-on-save workflows -- I prefer to stay in my editor and control what gets executed. I evaluate code as I write it, I have "test code" in a comment
form that I also evaluate as I write code and tests.
I find the auto-reloading processes just break stuff and get in the way more than they help.