-
Init Elm project:
elm init
-
Elm Repl:
elm repl
-
.elm
to.js
:elm make src/HomePage.elm --output elm.js
elm make src/Signup.elm --output signup.js
elm make src/SignupWithBootstrap.elm --output signup_bootstrap.js
-
Install dependency:
elm install elm/http
elm install rtfeldman/elm-css
elm intall elm/random
-
Run debugging -> http://localhost:8000:
elm reactor
-
Test:
npm install elm-test -g
elm-test init
-
Run Test:
elm-test