lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
anmonteiro 2017-07-14T06:11:19.485295Z

next release will allow this: https://twitter.com/anmonteiro90/status/885741059065528321

šŸ‘ 2
2
šŸ˜® 1
souenzzo 2017-07-14T10:48:20.432110Z

With this feature, should be much easier to persuade js developers

anmonteiro 2017-07-14T06:11:22.485923Z

Iā€™m so excited

anmonteiro 2017-07-14T06:11:27.486889Z

šŸ™ƒ

šŸ¦œ 2
pesterhazy 2017-07-14T07:14:30.348259Z

Sweet!

borkdude 2017-07-14T17:37:27.076687Z

Has someone got an example how to execute a shell command from lumo with capturing output?

borkdude 2017-07-14T17:37:50.089555Z

I found this, but I wonder if there is a more convenient way in lumo: https://nodejs.org/api/child_process.html#child_process_child_process_spawn_command_args_options

borkdude 2017-07-14T17:42:06.230188Z

exec, spawn: https://www.hacksparrow.com/difference-between-spawn-and-exec-of-node-js-child_process.html - I want exec

dominicm 2017-07-14T17:48:15.432449Z

We do this in mach

metametadata 2017-07-14T18:53:18.563257Z

@borkdude here's an example of how I use spawn (async and sync cases): https://gist.github.com/metametadata/0ddcf40d698a27851d29592011e89f06

borkdude 2017-07-14T20:14:28.925029Z

@metametadata @dominicm thanks

stbgz 2017-07-14T21:55:43.354864Z

@borkdude I also do something like that here https://github.com/eginez/calvin/blob/master/src/main/clojure/eginez/calvin/core.cljs#L178

stbgz 2017-07-14T21:56:08.362780Z

Hopefully it helps