This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-04-09
Channels
- # aleph (1)
- # asami (5)
- # babashka (4)
- # beginners (8)
- # biff (19)
- # calva (2)
- # cider (14)
- # clojure (17)
- # clojure-dev (3)
- # clojure-europe (3)
- # clojurescript (2)
- # community-development (9)
- # conjure (1)
- # core-typed (2)
- # datomic (6)
- # emacs (20)
- # gratitude (1)
- # helix (5)
- # kaocha (4)
- # nbb (1)
- # releases (3)
- # testing (17)
what is the different between neil and lein?
Do they do the same thing?
Not really. There's a lot of tooling in the Clojure world so it can be a bit overwhelming. Leiningen (lein) is a build tool that helps with all sort of stuff besides compiling, eg: generating uberjars. In the olden days it was the only tool around. Later it appeared boot and, more recently, https://clojure.org/guides/deps_and_cli. Deps uses a deps.edn
file where all the project configuration is stored. And neil seems to be a little helper to add stuff to that file in a command line fashion.
👏 3
1
1
I see thanks for the answers