lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
mdallastella 2018-07-18T12:40:03.000349Z

Hi, sorry to bother with (probably) a stupid question. I would like to create a lumo only project (it's for a quick and dirty cli tool). I tried to search online without success: is there a "lumo project template" somewhere or it's sufficient to use boot as explained here: https://github.com/anmonteiro/lumo#compile-clojurescript

john 2018-07-18T15:13:50.000550Z

@mdallastella I guess it depends on your needs, but you could go as simple as a shebang: #!/usr/bin/env lumo

john 2018-07-18T15:18:13.000105Z

Here's an example that starts a commit log with branch ID auto populated

richiardiandrea 2018-07-18T16:03:14.000567Z

@mdallastella no there is no template per se, I usually create a yarn/npm project with its package.json and start with that

richiardiandrea 2018-07-18T16:03:33.000557Z

My script section contains launchers basically

mdallastella 2018-07-18T16:07:56.000168Z

@john thanks

mdallastella 2018-07-18T16:09:10.000289Z

@richiardiandrea I read your blog post about it, I'm following it. Thank you!

richiardiandrea 2018-07-18T16:09:59.000291Z

Cool let me know if you have more questions 😉

john 2018-07-18T16:18:33.000042Z

ah, you were looking for compiled code. Wasn't sure what your level of familiarity was. FWIW, the startup time on these non-AOT scripts ain't that bad.