Forrest logo
back to context overview

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 machine
    explain this command
  • elm:tldr:0ab51 elm: Initialize an Elm project, generates an elm.json file.
    $ elm init
    try on your machine
    explain this command
  • elm:tldr:186d2 elm: Compile an Elm file, output the result to an `index.html` file.
    $ elm make ${source}
    try on your machine
    explain this command
  • elm:tldr:51443 elm: Start interactive Elm shell.
    $ elm repl
    try on your machine
    explain this command
  • elm:tldr:6bd8a elm: Start local web server that compiles Elm files on page load.
    $ elm reactor
    try on your machine
    explain this command
  • elm:tldr:98213 elm: Compile an Elm file, output the result to a JavaScript file.
    $ elm make ${source} --output=${destination}.js
    try on your machine
    explain this command
back to context overview