FWIW, As a work around, I tried using a common http server to serve the app and > was able to have hotreloading using a file system watching library to > automatically build and reload the browser. But I lost the debugger :( >
Elm-live <https://github.com/tomekwi/elm-live> is basically what you have described. I use it in all my projects as replacement of reactor, and I'm quite happy. You should be able to use the debugger outside of elm-reactor if you > compile with the --debug flag, for example > elm make --debug Main.elm --output main.js > You can use this: elm-live Main.elm --output main.js --warn --debug --open -- You received this message because you are subscribed to the Google Groups "Elm Discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
