tldr/pages/common/elm.md
Lena 8d3737dcbf
pages/*: add < > around links in example descriptions (#10594)
* pages/*: add `< >` around links in example descriptions

* Apply suggestions from code review

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* apm: add `< >` to the English page

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-09-10 18:51:33 +05:30

583 B

elm

Compile and run Elm source files. More information: https://elm-lang.org.

  • Initialize an Elm project, generates an elm.json file:

elm init

  • Start interactive Elm shell:

elm repl

  • Compile an Elm file, output the result to an index.html file:

elm make {{source}}

  • Compile an Elm file, output the result to a JavaScript file:

elm make {{source}} --output={{destination}}.js

  • Start local web server that compiles Elm files on page load:

elm reactor

elm install {{author}}/{{package}}