Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gabrielspassos/elm-sandbox
Repo with ELM POC's
https://github.com/gabrielspassos/elm-sandbox
elm elm-lang
Last synced: 6 days ago
JSON representation
Repo with ELM POC's
- Host: GitHub
- URL: https://github.com/gabrielspassos/elm-sandbox
- Owner: gabrielSpassos
- Created: 2023-01-18T22:33:31.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-02-06T22:51:57.000Z (almost 2 years ago)
- Last Synced: 2025-01-21T17:09:46.914Z (6 days ago)
- Topics: elm, elm-lang
- Language: Elm
- Homepage: https://guide.elm-lang.org/
- Size: 13.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ELM Sandbox
* [ELM](https://guide.elm-lang.org/)
* [Beginning Elm](https://elmprogramming.com/)> **Note**: Elm programming language itself is written in another language called [Haskell](https://www.haskell.org/).
### How to compile
```shell
elm make
```Ex:
```shell
elm make src/Main.elm
```### How to compile to JavaScript
```shell
elm make --output elm.js
```Ex:
```shell
elm make src/Main.elm --output elm.js
```### How to build and launch project
```shell
elm reactor
```### How to go to wrapper mode
```shell
elm repl
```### How to go out from wrapper mode
```
Ctrl + d
```or
```
:exit
```### How to install package
```shell
elm install /
```
Ex:
```shell
elm install elm/http
```