Skip to content

Instantly share code, notes, and snippets.

@janwirth
Last active April 30, 2022 05:34
Show Gist options
  • Save janwirth/28bf0fac4ac27e86fdd6e750566e2104 to your computer and use it in GitHub Desktop.
Save janwirth/28bf0fac4ac27e86fdd6e750566e2104 to your computer and use it in GitHub Desktop.
A productive elm programmers toolbox

Nice to know

elm-install can corrupt your dependencies. Remove elm-test from indirect depencies. It is only neede in test-dependencies.

Essentials

{
"test": "elm-verify-examples && elm-app test",
"tdd": "nodemon --exec 'npm test'"
}

to check / non-essentials

Patterns

  • update-in-ui: example: elm-colorpicker
  • non-msg html
  • encoding / decoding
  • html monkey patching
@janwirth
Copy link
Author

image

Credits: @Janiczek

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