https://github.com/pinx/elm-tutorial
Following the elm-architecture tutorial
https://github.com/pinx/elm-tutorial
Last synced: 5 months ago
JSON representation
Following the elm-architecture tutorial
- Host: GitHub
- URL: https://github.com/pinx/elm-tutorial
- Owner: pinx
- Created: 2016-04-07T03:09:22.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-07T05:52:36.000Z (over 9 years ago)
- Last Synced: 2024-12-28T08:28:57.026Z (7 months ago)
- Language: Elm
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Getting started with Elm
```bash
npm install --global elm elm-live
elm package install evancz/start-app
elm package install evancz/elm-html
```Make a script file (e.g. ./elm-run, chmod +x), with:
```bash
elm-live src/Main.elm --output=index.html
```Start live coding:
```bash
./elm-run
```