/clojurescript-just-reagent-skeleton

Bare bones ClojureScript + Reagent, no ring etc.

Primary LanguageClojure

Dev Run Application:

lein clean
lein figwheel dev

Figwheel will automatically push cljs changes to the browser.

Wait a bit, then browse to http://localhost:3449.

Production Build

To compile clojurescript to javascript:

lein clean
lein cljsbuild once min

Connect to REPL (command-line) from IntelliJ

Our 'project.clj' sets up figwheel :nrepl-port to 7002.

Create remote REPL run configuration to 127.0.0.1:7002.

Once started paste the following in the IntelliJ REPL (Alt-8)

(use 'figwheel-sidecar.repl-api)
(cljs-repl)