https://github.com/bigbinary/road-to-elm
Examples of Elm code
https://github.com/bigbinary/road-to-elm
elm elm-lang json-decoding json-encoding
Last synced: about 2 months ago
JSON representation
Examples of Elm code
- Host: GitHub
- URL: https://github.com/bigbinary/road-to-elm
- Owner: bigbinary
- License: mit
- Created: 2017-08-01T01:53:59.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-24T00:57:53.000Z (about 7 years ago)
- Last Synced: 2025-02-04T21:43:23.044Z (4 months ago)
- Topics: elm, elm-lang, json-decoding, json-encoding
- Language: Elm
- Size: 33.2 KB
- Stars: 0
- Watchers: 22
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Road to Elm - Examples of Elm code
This repository contains working solutions to some problems
which we encountered while learning Elm.## Setup and usage
1. Clone this repository and navigate inside it.
2. Install required Elm packages using following command.
```
elm package install
```3. To see each example in action, run `elm reactor` command.
Elm reactor will start a local server listing all the files
in this repository in browser.
Click on any file having extension `.elm` to execute it
and see the output in the browser.## Table of contents
* [Working with forms](working-with-forms)
* [HTTP requests](http-requests)
* [JSON encoding and decoding](json-encoding-and-decoding)