https://github.com/deepredsky/praise
https://github.com/deepredsky/praise
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/deepredsky/praise
- Owner: deepredsky
- License: bsd-3-clause
- Created: 2019-07-07T20:24:39.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-07T20:25:45.000Z (about 7 years ago)
- Last Synced: 2025-07-14T04:35:34.417Z (12 months ago)
- Language: CSS
- Homepage:
- Size: 132 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TodoMVC in Elm - [Try It!](http://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!