Hacker News new | ask | show | jobs
by zurn 3288 days ago
In web development you live-reload code in the running Clojure app, so turn-around time is excellent.

(ClojureScript has very good live reload support as well)

1 comments

There can be problems with state management, which I've only seen with our web application. Sometimes a hard stop / start is what you need unless you designed the application for reload-ability. We're working towards that for our web application. Frameworks especially seem to exacerbate this problem, since you have limited control over the execution of your program.