36 lines
806 B
Markdown
36 lines
806 B
Markdown
Getting Started
|
|
===============
|
|
|
|
## Installation
|
|
|
|
1. Install [Node.js](http://nodejs.org) 4.0.0 or higher
|
|
|
|
2. Not required, but **highly** recommended: [install elm-format](https://github.com/avh4/elm-format#installation-) and integrate it into your editor so that it runs on save.
|
|
|
|
3. Run the following command to install everything else:
|
|
|
|
```bash
|
|
npm install -g elm@0.16.0 elm-live@2.0.4 elm-test@0.16.1-alpha3 elm-css@0.4.0
|
|
```
|
|
|
|
This command could take several minutes to complete.
|
|
|
|
## Clone this repository
|
|
|
|
Run this at the terminal:
|
|
|
|
```bash
|
|
git clone https://github.com/rtfeldman/elm-workshop.git
|
|
cd elm-workshop
|
|
```
|
|
|
|
## Start with Stage 1
|
|
|
|
Run this at the terminal:
|
|
|
|
```bash
|
|
cd stages/1
|
|
```
|
|
|
|
Now head over to the [README for stage 1](https://github.com/rtfeldman/elm-workshop/tree/master/stages/1)!
|