The TodoMVC app written in Elm, nice example for beginners.
Switch branches/tags
Nothing to show
Clone or download
Pull request Compare This branch is 8 commits behind master.
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
.gitignore
LICENSE
README.md
Todo.elm
elm-package.json
index.html
style.css

README.md

TodoMVC in Elm - Try It!

All of the Elm code lives in Todo.elm and relies on the elm-lang/html library.

There also is a port handler set up in index.html to store the Elm application's state in localStorage on every update.

Build Instructions

Run the following command from the root of this project:

elm-make Todo.elm --output elm.js

Then open index.html in your browser!