https://github.com/eeue56/lets-write-elm
https://github.com/eeue56/lets-write-elm
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/eeue56/lets-write-elm
- Owner: eeue56
- License: bsd-3-clause
- Created: 2017-04-24T21:31:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-13T22:20:51.000Z (over 7 years ago)
- Last Synced: 2025-01-26T17:37:28.566Z (3 months ago)
- Language: Elm
- Size: 8.79 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lets-write-elm
---
## Goals
- Understand Elm's syntax
- Take a look at examples views
- Learn how elm-test works
- Fix some broken code---
## Go install ElmIf you haven't installed Elm previously, you should install Elm now. The easiest way to install Elm is via `npm`. We're also going to be using elm-test in order to run our tests.
```
npm install -g elm elm-test elm-format
```If you don't have npm, I suggest you get it.
---
## Clone this repo
https://github.com/eeue56/lets-write-elm
```
git clone [email protected]:eeue56/lets-write-elm.git
```---
## Now what?
Run elm-test and get fixing things!
---