Fork me on GitHub
#beginners
<
2015-06-09
>
airportyh01:06:36

Hello all. I find starting the clojure runtime to be pretty slow especially on my old mba. Do clojure devs mostly stay in the repl in order to get a fast feedback loop?

surreal.analysis02:06:17

@airportyh: Yes, generally while developing Clojure applications you stick to a REPL. There are also a number of resources to make Leiningen faster here - https://github.com/technomancy/leiningen/wiki/Faster

surreal.analysis02:06:15

If you’re just trying a lot of things out though, you may still find it slow because you need to change your project.clj often

surreal.analysis02:06:37

Which lets you reload dependencies without restarting the REPL

airportyh02:06:31

ah okay thanks

airportyh02:06:42

also came across the reloaded lein template

airportyh02:06:42

so without alembic, you would have to restart the repl each time after adding a dependency?

escherize06:06:00

In emacs, with cider 0.8.2, is there a way to create and jump to a test for the current clj source file?