https://github.com/jfairbank/elm-demos
Example Elm demo apps to complement future Elm blog posts
https://github.com/jfairbank/elm-demos
demo elm elm-demos
Last synced: 7 months ago
JSON representation
Example Elm demo apps to complement future Elm blog posts
- Host: GitHub
- URL: https://github.com/jfairbank/elm-demos
- Owner: jfairbank
- License: mit
- Created: 2017-01-18T19:33:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-16T22:20:48.000Z (over 8 years ago)
- Last Synced: 2025-01-21T17:36:53.529Z (9 months ago)
- Topics: demo, elm, elm-demos
- Language: Elm
- Homepage: https://elm-demos.jeremyfairbank.com
- Size: 92.8 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elm Demos
This repo contains example Elm apps to complement future blog posts on Elm.
## Individual Apps
You can run individual demos by going into the appropriate directory and
following the instructions in the README there. Demos are contained in the
folders that start with a number like `01-counter/`.## All Apps
Follow these instructions to run all the demos in a single-page app.
### Installation
Install the dependencies with yarn:
```sh
$ yarn
```Or npm:
```sh
$ npm install
```### Running
To run the development server, run the below command and go to
[http://localhost:3000](http://localhost:3000) in your browser.```sh
$ npm run dev
```