Skip to content

Instantly share code, notes, and snippets.

@eh-am
Last active July 16, 2019 20:36
Show Gist options
  • Save eh-am/deaffc29d9aff97457802cc9fd671992 to your computer and use it in GitHub Desktop.
Save eh-am/deaffc29d9aff97457802cc9fd671992 to your computer and use it in GitHub Desktop.
elm learnings

dev env

https://github.com/ElmCast/elm-vim

debugging

The debugger sidebar has a character limit, so you can't really see the entire thing. A way to circumvent that is to log the message

case Debug.log "msg" msg of

https://discourse.elm-lang.org/t/display-full-msg-in-elm-debugger-sidebar/1578/4

decoding json

Use the following library: https://github.com/NoRedInk/elm-json-decode-pipeline

linting

the compiler helps you from screwing up, but we still need to follow good practices https://github.com/stil4m/elm-analyse

libs

https://github.com/hecrj/composable-form looks nice but i needed to create my own view

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment