lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
2017-09-10T00:41:03.000105Z

@anmonteiro just got done watching your talk at clojurtre, really great job. Thanks for putting that together

anmonteiro 2017-09-10T00:41:23.000031Z

thanks! I appreciate it

2017-09-10T01:28:17.000005Z

WOW! That did the trick! ¡Muchas gracias! 🙂

2017-09-10T02:11:59.000066Z

Sorry, I'm back. If I first start a repl with "lumo -c cat cp.txt" and then evaluate (require 'v8) and (v8/setFlagsFromString "--nouse_strict"), I can do the (require 'tubax.core) with no errors. However, if I put those three forms into a file (main.cljs) and run "lumo -c cat cp.txt main.cljs", I get the same errors as before. Ideas?

anmonteiro 2017-09-10T02:16:33.000003Z

@gschiltz hrm, weird. workaround is to run lumo like this:

lumo -e "(require 'v8) (v8/setFlagsFromString \"--nouse_strict\")" main.cljs

2017-09-10T02:55:28.000034Z

Thanks for the quick response yet again. That did the trick.