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

https://github.com/eeue56/lets-write-elm


https://github.com/eeue56/lets-write-elm

Last synced: about 1 month ago
JSON representation

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 Elm

If 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!

---