Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```