[ClojureScript] Re: How is Clojure loaded by java from cljs.jar?

2017-08-05 Thread Alex Miller
cljs.jar is self-contained (includes its dependencies) and includes Clojure itself (including clojure.main). The cljs.jar is built using this script: https://github.com/clojure/clojurescript/blob/master/script/build You can walk through that process to learn more if needed. On Saturday,

[ClojureScript] How is Clojure loaded by java from cljs.jar?

2017-08-05 Thread Jay Martin
In the "ClojureScript Compiler" section of the ClojureScript Quick Start Guide , we run the build script with the java command: java -cp cljs.jar:src clojure.main build.clj This command starts a JVM and loads the cljs.jar file and all of the

[ClojureScript] Re: Clojurescript equivalent for JS to access table rows

2017-08-05 Thread Jay Martin
jQuery includes CSS-like dom selection syntax. There are many ClojureScript libs which do this too, some of which are here :, along with their relative tradeoffs. You might get more replies by going through the exercise of doing an initial