Getting Started
Depending on wether you want to just start a Clojure REPL or you have a project you want to work with, getting started looks similar but a bit different. Regardless, you need to install Calva in VS Code.
If you have a Clojure or ClojureScript project, you will be interested in how to get Calva connected to the REPL of your project. But before you run over there, you might want to familiarize yourself with Calva a bit, which you can do without a project.
The demo tells you about the command (and some about the Clojure Beginner's material that it makes available).
There's a ”Getting Started” REPL
If you are new to Calva, a good place to start is using the command Fire up the ”Getting Started” REPL. Demo:
It will open up a three files in a temporary directory, and start and connect a REPL. The files are:
hello-repl.clj
– The basics of how to evaluate code in Calvahello-paredit.clj
- A super brief intro to Calva structural editinghello-clojure.clj
- The very basics of the Clojure language
The only prerequisite here is that you have Java installed. No pre-installed clojure tools required. (You will want to install these tools later, of course.)
Note
When you are more familiar with Calva, and want a standalone REPL, there is a separate command: Start a standalone REPL (not in project). It will open up a user.clj
in a temporary directory, containing only an (ns user)
form, and start and connect the REPL.
Note2
The command for starting the Getting Started REPL will download the files from this repository. It is very much work in progress, and there is not even a finished Clojure Beginner's Guide there yet. WHen you run the command again, and from then on, you will get the option to download new files or keep using your existing. Downloading new ones will not overwrite your existing ones, because they will be downloaded to a new temp directory. You can find the directory easily using VS Codes context menu command for revealing a file in the Explorer/Finder.
You have a Project?
If you are new to Calva, please consider the above option first. Then when it it will be time to get Calva connected to the REPL of your project.
Clojure Resources
If you are new to Clojure or ClojureScript altogether, please check out the guide material on the respective official sites:
There are also many great books on Clojure. Clojure for the Brave and True can be read for free online. It is a great resource for beginners.
Happy coding! ♥️