Update READMEs
This commit is contained in:
@@ -1,9 +1,6 @@
|
||||
Part 1
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -20,6 +17,7 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## References
|
||||
* [html-to-elm](http://mbylstra.github.io/html-to-elm/) - paste in HTML, get elm-html code
|
||||
|
||||
* [**if-expressions**](http://elm-lang.org/docs/syntax#conditionals)
|
||||
* [elm-html documentation](http://package.elm-lang.org/packages/elm-lang/html/latest)
|
||||
* [record syntax](http://elm-lang.org/docs/syntax#records) (e.g. `{ foo = 1, bar = 2 }`)
|
||||
* [html-to-elm](http://mbylstra.github.io/html-to-elm/) - paste in HTML, get elm-html code
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 10
|
||||
=======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -19,27 +16,6 @@ elm-package install
|
||||
elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## Running Tests
|
||||
|
||||
Do either (or both!) of the following:
|
||||
|
||||
#### Running tests on the command line
|
||||
|
||||
```bash
|
||||
elm-test
|
||||
```
|
||||
|
||||
#### Running tests in a browser
|
||||
|
||||
```bash
|
||||
cd tests
|
||||
elm-reactor
|
||||
```
|
||||
|
||||
Then visit [localhost:8000](http://localhost:8000) and choose `HtmlRunner.elm`.
|
||||
|
||||
## References
|
||||
|
||||
* [Using Elm packages](https://github.com/elm-lang/elm-package/blob/master/README.md#basic-usage)
|
||||
* [elm-test documentation](http://package.elm-lang.org/packages/project-fuzzball/test/latest)
|
||||
* [`(<|)` documentation](http://package.elm-lang.org/packages/elm-lang/core/4.0.0/Basics#<|)
|
||||
* [Navigation package documentation](http://package.elm-lang.org/packages/elm-lang/navigation/latest)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 10
|
||||
Part 11
|
||||
=======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -19,27 +16,6 @@ elm-package install
|
||||
elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## Running Tests
|
||||
|
||||
Do either (or both!) of the following:
|
||||
|
||||
#### Running tests on the command line
|
||||
|
||||
```bash
|
||||
elm-test
|
||||
```
|
||||
|
||||
#### Running tests in a browser
|
||||
|
||||
```bash
|
||||
cd tests
|
||||
elm-reactor
|
||||
```
|
||||
|
||||
Then visit [localhost:8000](http://localhost:8000) and choose `HtmlRunner.elm`.
|
||||
|
||||
## References
|
||||
|
||||
* [Using Elm packages](https://github.com/elm-lang/elm-package/blob/master/README.md#basic-usage)
|
||||
* [elm-test documentation](http://package.elm-lang.org/packages/project-fuzzball/test/latest)
|
||||
* [`(<|)` documentation](http://package.elm-lang.org/packages/elm-lang/core/4.0.0/Basics#<|)
|
||||
* [Sortable Table documentation](http://package.elm-lang.org/packages/evancz/elm-sortable-table/latest)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 1
|
||||
Part 2
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -20,6 +17,6 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## References
|
||||
* [html-to-elm](http://mbylstra.github.io/html-to-elm/) - paste in HTML, get elm-html code
|
||||
* [elm-html documentation](http://package.elm-lang.org/packages/elm-lang/html/latest)
|
||||
|
||||
* [record syntax](http://elm-lang.org/docs/syntax#records) (e.g. `{ foo = 1, bar = 2 }`)
|
||||
* [`List.map` documentation](http://package.elm-lang.org/packages/elm-lang/core/3.0.0/List#map)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 2
|
||||
Part 3
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -21,6 +18,7 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
|
||||
## References
|
||||
|
||||
* [Type Annotation syntax reference](http://elm-lang.org/docs/syntax#type-annotations)
|
||||
* [`type alias` syntax reference](http://elm-lang.org/docs/syntax#type-aliases)
|
||||
* [`List.map` documentation](http://package.elm-lang.org/packages/elm-lang/core/3.0.0/List#map)
|
||||
* [**let-expressions**](http://elm-lang.org/docs/syntax#let-expressions)
|
||||
* [The Elm Architecture](http://guide.elm-lang.org/architecture/)
|
||||
* [`onClick` documentation](http://package.elm-lang.org/packages/evancz/elm-html/4.0.2/Html-Events#onClick)
|
||||
* [record update syntax reference](http://elm-lang.org/docs/syntax#records) (e.g. `{ model | query = "foo" }`)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 3
|
||||
Part 4
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -21,5 +18,5 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
|
||||
## References
|
||||
|
||||
* [`onClick` documentation](http://package.elm-lang.org/packages/evancz/elm-html/4.0.2/Html-Events#onClick)
|
||||
* [record update syntax reference](http://elm-lang.org/docs/syntax#records) (e.g. `{ model | query = "foo" }`)
|
||||
* [Type Annotation syntax reference](http://elm-lang.org/docs/syntax#type-annotations)
|
||||
* [`type alias` syntax reference](http://elm-lang.org/docs/syntax#type-aliases)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 4
|
||||
Part 5
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -21,4 +18,5 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
|
||||
## References
|
||||
|
||||
* [**case-expressions**](http://elm-lang.org/docs/syntax#conditionals)
|
||||
* [Union Types syntax reference](http://elm-lang.org/docs/syntax#union-types)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 5
|
||||
Part 6
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -18,3 +15,8 @@ elm-package install
|
||||
```bash
|
||||
elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## References
|
||||
|
||||
* [JSON decoding](http://guide.elm-lang.org/interop/json.html)
|
||||
* [`elm-decode-pipeline` documentation](http://package.elm-lang.org/packages/NoRedInk/elm-decode-pipeline/latest)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 6
|
||||
Part 7
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -21,8 +18,6 @@ elm-live Main.elm --open --pushstate --output=elm.js
|
||||
|
||||
## References
|
||||
|
||||
* [**let-expressions**](http://elm-lang.org/docs/syntax#let-expressions)
|
||||
* [**case-expressions** and **if-expressions**](http://elm-lang.org/docs/syntax#conditionals)
|
||||
* [HTTP Tasks tutorial](http://elm-lang.org/guide/reactivity#http-tasks)
|
||||
* [HTTP Error documentation](http://package.elm-lang.org/packages/evancz/elm-http/3.0.0/Http#Error)
|
||||
* [Modules syntax reference](http://elm-lang.org/docs/syntax#modules)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 7
|
||||
Part 8
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -18,3 +15,8 @@ elm-package install
|
||||
```bash
|
||||
elm-live Main.elm --open --pushstate --output=elm.js
|
||||
```
|
||||
|
||||
## References
|
||||
|
||||
* [JavaScript interop](http://guide.elm-lang.org/interop/javascript.html)
|
||||
* [github.js](https://github.com/michael/github)
|
||||
|
||||
@@ -1,9 +1,6 @@
|
||||
Part 8
|
||||
Part 9
|
||||
======
|
||||
|
||||
The instructor will paste notes from the lesson, including code examples from
|
||||
Q&A, in [this document](https://docs.google.com/document/d/1ApuSOk9DP0YsQrxhW7-WE8UOEAV4PPnLDDeqUOL2o5k/edit?usp=sharing).
|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
@@ -41,5 +38,5 @@ Then visit [localhost:8000](http://localhost:8000) and choose `HtmlRunner.elm`.
|
||||
## References
|
||||
|
||||
* [Using Elm packages](https://github.com/elm-lang/elm-package/blob/master/README.md#basic-usage)
|
||||
* [elm-test documentation](http://package.elm-lang.org/packages/project-fuzzball/test/latest)
|
||||
* [`(<|)` documentation](http://package.elm-lang.org/packages/elm-lang/core/4.0.0/Basics#<|)
|
||||
* [elm-test documentation](http://package.elm-lang.org/packages/elm-community/elm-test/latest)
|
||||
* [`(<|)` documentation](http://package.elm-lang.org/packages/elm-lang/core/latest/Basics#<|)
|
||||
|
||||
Reference in New Issue
Block a user