rvdalen <[email protected]> writes: > 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. > > ... > > Can someone maybe explain how to get basic deps.edn to work without > using Leiningen?
Hi Rouan, The deps.edn file is used by the Clojure Tools CLI (not Leiningen). You will need to install that program first. https://clojure.org/guides/install_clojure Once it is available on your shell's search path, simply calling `clojure` with or without any arguments will read the deps.edn file and download any dependencies listed within its `:deps` map to the `.m2/repository` directory in your home directory. These will be automatically added to your classpath when running the application through `clojure`. Good luck and happy hacking! Gary -- GPG Key ID: 7BC158ED Use `gpg --search-keys lambdatronic' to find me Protect yourself from surveillance: https://emailselfdefense.fsf.org ======================================================================= () ascii ribbon campaign - against html e-mail /\ www.asciiribbon.org - against proprietary attachments Why is HTML email a security nightmare? See https://useplaintext.email/ Please avoid sending me MS-Office attachments. See http://www.gnu.org/philosophy/no-word-attachments.html -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/clojurescript/87k06xk60x.fsf%40gmail.com.
