ring

kwladyka 2019-01-13T10:08:51.045400Z

@seancorfield What is your flow during developing? Just [ring.middleware.reload :refer [wrap-reload]] or do you have something extra?

seancorfield 2019-01-13T23:01:55.046700Z

@kwladyka I evaluate code directly into the running application as I'm developing it. I don't need the app to "reload on save".

seancorfield 2019-01-13T23:06:22.048100Z

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.

seancorfield 2019-01-13T23:07:21.048800Z

I find the auto-reloading processes just break stuff and get in the way more than they help.