mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-10-30 02:17:56 +01:00
elm: add Italian translation.
This commit is contained in:
parent
ce67987759
commit
d7d1c51650
1 changed files with 28 additions and 0 deletions
28
pages.it/common/elm.md
Normal file
28
pages.it/common/elm.md
Normal file
|
@ -0,0 +1,28 @@
|
|||
# elm
|
||||
|
||||
> Compila ed esegui file sorgente Elm.
|
||||
> Maggiori informazioni: <https://elm-lang.org>.
|
||||
|
||||
- Inizializza un progetto Elm, generando un file elm.json:
|
||||
|
||||
`elm init`
|
||||
|
||||
- Avvia una shell Elm interattiva:
|
||||
|
||||
`elm repl`
|
||||
|
||||
- Compila un file Elm, scrivendo il risultato in un file index.html:
|
||||
|
||||
`elm make {{sorgente}}`
|
||||
|
||||
- Compila un file Elm, scrivendo il risultato in un file JavaScript:
|
||||
|
||||
`elm make {{sorgente}} --output={{destinazione}}.js`
|
||||
|
||||
- Avvia un web server locale che compila file Elm al caricamento delle pagine:
|
||||
|
||||
`elm reactor`
|
||||
|
||||
- Installa un pacchetto Elm da https://package.elm-lang.org:
|
||||
|
||||
`elm install {{author}}/{{package}}`
|
Loading…
Reference in a new issue