Elm Code Compiler
This online tool helps you compile Elm code. Below are some examples of how to use the Elm compiler.
Basic Compilation
elm make HelloWorld.elm --output index.html
Custom Output Names
elm make HelloWorld.elm --output hw.js
Compiling Multiple Files
elm make HelloWorld.elm MyModule.elm --output hw.js
Compilation with Warnings
elm make HelloWorld.elm --warn
Installing Packages
elm package install evancz/elm-html
Further Resources
Learn more about Elm and its capabilities from these resources: