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 effort in setting up a development environment + project build system (I'm guessing this will be a very very short program).
My understanding is that Graal + Clojure is not easy right now (from checking the docs), so although I'm much more familiar with the Java ecosystem than with the JavaScript ecosystem, I'm thinking ClojureScript + nexe is the way to go? That would let me produce macOS + Linux + Windows static binaries that my team-mates can just drop in their path without installing anything else, I believe.
If I go ClojureScript + nexe, is there a good project template for that or a sample project I can replicate that does something like this? I see lein, boot, lumo, and others, and it's a bit hard to choose which one is easiest to use.
Thanks,
Álex