I'm interested in writing an Elm tutorial but I'm not sure what you all would want from such a tutorial.
My gut feeling is that there is a need for a tutorial that shows you how to build a SPA from start to finish.
There's,
rtfeldman
/
elm-spa-example
A Single Page Application written in Elm
Elm codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld spec and API.
Demo    RealWorld
This codebase was created to demonstrate a fully fledged fullstack application built with Elm including CRUD operations, authentication, routing, pagination, and more.
For more information on how this works with other frontends/backends, head over to the RealWorld repo.
How it works
Check out the full writeup!
Building
I decided not to include a build script, since all you need for a development build is the elm
executable, and all you need on top of that for production is Uglify.
Development Build
Install Elm (e.g. with npm install --global elm
), then from the root project directory, run this:
$ elm make src/Main.elm --output elm.js
If you want to include…
and he gave a talk,
and wrote a post,

Tour of an Open-Source Elm SPA
Richard Feldman ・ May 8 '17 ・ 6 min read
about it.
Is that sufficient?
Do you need a more detailed breakdown of elm-spa-example
?
Would you like a detailed breakdown of a different app entirely? Which one?
Your thoughts on these questions will help me decide on what to focus my attention.
Top comments (10)
Some topics that I don't think have been covered well in the official documentation:
Nice! Thanks for these suggestions.
Also, since you seem to be the biggest evangelist for Elm right now, could you recommend any specific Elm projects that need help?
I have an interest in Elm that I'm exploring deeply. I share what I learn but I'm no evangelist for Elm.
None that I'm aware of at the moment.
Since I have you here.
What tutorial would YOU be most interested in reading (from your list or otherwise)? Are you currently trying to build something and struggling?
Definitely parsing, I love learning about compilers!
Would love to read a tutorial about the parser too !
I love what you do with it, was telling my friend about you today and yes I'd love to learn it please..make a tutorial for it, text or video is fine..thanks
Anything real world, as in the kind of stuff we need to build day to day. and anything with elm-ui!
A more complete tutorial can be found at udemy.com/course/elm-the-complete-...