Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

33
elm Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`
- Install Elm package from <https://package.elm-lang.org>:
`elm install {{author}}/{{package}}`