Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evancz/elm-todomvc

The TodoMVC app written in Elm, nice example for beginners.
https://github.com/evancz/elm-todomvc

elm example

Last synced: 6 days ago
JSON representation

The TodoMVC app written in Elm, nice example for beginners.

Awesome Lists containing this project

README

        

# TodoMVC in Elm - [Try It!](https://evancz.github.io/elm-todomvc)

All of the Elm code lives in `src/Main.elm` and relies on the [elm/html][html] library.

[html]: https://package.elm-lang.org/packages/elm/html/latest

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:

```bash
elm make src/Main.elm --output=elm.js
```

Then open `index.html` in your browser!