mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-10 11:29:59 +03:00
7faabae907
* elm: update page
535 B
535 B
elm
Compile and run Elm source files.
- 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
- Install Elm package from https://package.elm-lang.org:
elm install {{author}}/{{package}}