Re: Recommended way to develop a command-line app in Clojure

2021-06-21 Thread Christopher Small
If you want quick-running (sans JVM/Clojure startup time) and would rather stick with the JVM Clojure paradigm over Cljs, I'd highly recommend looking at babashka: https://github.com/babashka/babashka The setup is super easy, you get access to a lot of the basic JVM classes, and it comes with

Re: Recommended way to develop a command-line app in Clojure

2021-06-21 Thread Alex Corcoles
Actually, while doing some more research I stumbled into: https://github.com/theasp/parseit Which is basically what I want to do- and it points to yet-another-build-tool: https://github.com/thheller/shadow-cljs On Monday, June 21, 2021 at 8:58:18 PM UTC+2 Alex Corcoles wrote: > > I want to dev

Recommended way to develop a command-line app in Clojure

2021-06-21 Thread Alex Corcoles
I want to develop a CLI tool based on instaparse; basically I want to do: $ instaparse-cli my-grammar.abnf random-file And have that command spout a JSON AST of random-file according to my-grammar. I would like to distribute this in a convenient way for my team-mates, without spending a ton of