
elm
List of commands for elm:
-
elm:tldr:06900 elm: Install Elm package from https://package.elm-lang.org.$ elm install ${author}/${package}try on your machineexplain this command
-
elm:tldr:0ab51 elm: Initialize an Elm project, generates an elm.json file.$ elm inittry on your machineexplain this command
-
elm:tldr:186d2 elm: Compile an Elm file, output the result to an `index.html` file.$ elm make ${source}try on your machineexplain this command
-
elm:tldr:51443 elm: Start interactive Elm shell.$ elm repltry on your machineexplain this command
-
elm:tldr:6bd8a elm: Start local web server that compiles Elm files on page load.$ elm reactortry on your machineexplain this command
-
elm:tldr:98213 elm: Compile an Elm file, output the result to a JavaScript file.$ elm make ${source} --output=${destination}.jstry on your machineexplain this command