Fork me on GitHub
#gratitude
<
2022-01-13
>
borkdude19:01:51

I'm grateful for #clojurescript - it's a great project and every day still happy it exists. Thank you Rich, @dnolen, @mfikes and others! The fact that I can do clj -Sdeps '{:deps {org.clojure/clojurescript {:mvn/version "1.10.914"}}}' -M -m cljs.main -re node to test my CLJC projects in a REPL still blows my mind.

cljs 17
1
gratitude 8
Björn Christensson20:01:28

I’m totally green in the field of clojure yet very curious to functional p. and clojure. @U04V15CAJ would you care to explain your above mentioned cmd a bit more in-depth? Or point me to what you think is good resources for get to know cljc better. My background knowledge resides in JavaScript and some Scala.

borkdude20:01:54

cljc is a way to develop code for both Clojure and ClojureScript in one file. A lot of my projects target both the JVM and JS. The above command starts a Node CLJS REPL in which you can require your project and try changes, reload code, etc.

💯 1
Björn Christensson21:01:38

Thanks for the insight :thumbsup: