1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 21:42:08 +02:00
tldr/pages/common/clj.md
Diego B. Fernandez f3e92ad0a4
clj: add page (#4980)
* clj: add page

* Update pages/common/clj.md

* Update clj.md

* Update clj.md

* Apply suggestions from code review

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>

* Apply suggestions from code review

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>

Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2020-12-23 13:59:36 +00:00

29 lines
867 B
Markdown

# clj
> Clojure tool to start a REPL or invoke a specific function with data.
> All options can be defined in a `deps.edn` file.
> More information: <https://clojure.org/guides/deps_and_cli>.
- Start a REPL:
`clj`
- Execute a function:
`clj -X {{namespace/function_name}}`
- Run the main function of a specified namespace:
`clj -M -m {{namespace}} {{args}}`
- Prepare a project by resolving dependencies, downloading libraries, and making / caching classpaths:
`clj -P`
- Start an nREPL server with the CIDER middleware:
`clj -Sdeps '{:deps {nrepl {:mvn/version "0.7.0"} cider/cider-nrepl {:mvn/version "0.25.2"}}}' -m nrepl.cmdline --middleware '["cider.nrepl/cider-middleware"]' --interactive`
- Start a REPL for ClojureScript and open a web browser:
`clj -Sdeps '{:deps {org.clojure/clojurescript {:mvn/version "1.10.758"}}}' --main cljs.main --repl`