By neildaemond, an 'any-stack' hacking grasshopper.
Taking notes while tinkering with:

I’ve really been enjoying my recent experience with the front end (functional) programming language called Elm for the following reasons:

  • The Elm Architecture is great for single page apps (SPAs) as the rendered view will update automatically depending on the data model which gets manipulated when events are triggered.

  • Immutable variables and Strong typing produces reliable and readable code, although slightly trickier to write (at first).

  • The compiler is extremely smart and helpful (and a bit strict), often telling you exactly what went wrong and where to find it. Compiled Elm apps have slogan of “No Runtime Errors” since the Strict Typing allows the compiler to ensure there will not be any.

  • It is compiled into javascript and easy to embed into any existing page/project.

Here is my guide to getting started (with vim as my IDE):

follow the 'getting-to-know-elm' RSS feed by clicking here