This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2023-05-10
Channels
- # aws (39)
- # babashka (4)
- # beginners (5)
- # biff (25)
- # cider (14)
- # clj-on-windows (40)
- # clojure-europe (36)
- # clojure-gamedev (1)
- # clojure-losangeles (4)
- # clojure-norway (51)
- # clojure-spec (5)
- # clojure-uk (2)
- # clojurescript (2)
- # clr (176)
- # data-science (10)
- # datalevin (17)
- # datomic (7)
- # deps-new (4)
- # docs (3)
- # emacs (12)
- # figwheel (3)
- # figwheel-main (5)
- # hyperfiddle (20)
- # instaparse (3)
- # introduce-yourself (8)
- # lsp (66)
- # malli (43)
- # off-topic (4)
- # rdf (11)
- # reagent (5)
- # releases (2)
- # sci (11)
- # shadow-cljs (24)
- # slack-help (2)
- # specter (7)
- # tools-deps (3)
- # xtdb (48)
Hey there, nice people 🙂 I'm looking for ways to practice clojure in a "real world" scenario, so I've decided to build a CLI tool... is there a recommended framework for such? I might as well not use anything, I was just wondering cause most of the tutorials I found are for web services
a few popular libraries for parsing CLI args include: • tools.cli (<https://github.com/clojure/tools.cli>) • cli-matic (<https://github.com/l3nz/cli-matic>) • babashka.cli (<https://github.com/babashka/cli>)
1
There's also https://github.com/nubank/docopt.clj. Fwiw, my favourite these days is babashka.cli.
1
☝️ 1