Hi everyone, I am trying to get the most basic ClojureScript project up and running on Windows (not in WSL).
I tried following the instructions on the Getting Started guide, but ran into trouble. I could not download the cljs.jar file. It seems the link in the guide is broken. I had to scratch around to find the right cljs.jar file. I downloaded the 1.11.4 cljs version. After that I created the deps.edn file as described in the guide, and I run the cljs project with the command: java -cp "cljs.jar;src/cljs;src/clj" cljs.main --compile mazes.core --repl Things are working at this point, but I am now trying to add a dependency to dumdom in the deps.edn file, but the dependency files are not downloaded automatically. I can get it working by manually downloading the dumdom.jar file and changing my run command to: java -cp "cljs.jar;dumdom.jar;src/cljs;src/clj" cljs.main --compile mazes.core --repl Can someone maybe explain how to get basic deps.edn to work without using Leiningen? I just want a super simple ClojureScript project for messing around in the browser. Regards --Rouan -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojurescript+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/clojurescript/99c0f5f1-b1d9-47d8-9457-c1fb32e1920an%40googlegroups.com.