Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrbrunelli/my-first-elm-app
My Fist App using Elm Lang
https://github.com/mrbrunelli/my-first-elm-app
elm elm-architecture elm-lang functional-language functional-programming
Last synced: 24 days ago
JSON representation
My Fist App using Elm Lang
- Host: GitHub
- URL: https://github.com/mrbrunelli/my-first-elm-app
- Owner: mrbrunelli
- Created: 2021-03-26T15:39:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-03-26T21:48:26.000Z (almost 4 years ago)
- Last Synced: 2024-11-15T09:50:28.888Z (3 months ago)
- Topics: elm, elm-architecture, elm-lang, functional-language, functional-programming
- Language: HTML
- Homepage: https://mrbrunelli.github.io/my-first-elm-app/
- Size: 383 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## My First Elm App
> A delightful language for reliable web applications.
> How to install Elm? :link:[Link here](https://guide.elm-lang.org/install/elm.html)
> Docs: :link: [Link here](https://elm-lang.org/)### How to execute
```sh
# Clone this repository
git clone https://github.com/mrbrunelli/my-first-elm-app# Navigate to project folder
cd my-first-elm-app/# Execute in dev mode
elm reactor# When the dashboard finish load
# Access in http://localhost:8000 and:
src/Main.elm
```### How to compile
```sh
# Automatic generator
elm make src/Main.elm# With output folder
elm make src/Main.elm --output dist/elm.js# With optimized output
elm make src/Main.elm --output dist/elm.js --optimize# Generate HTML only
elm make src/Main.elm --output dist/index.html --optimize
```### Best Functional Syntax
![](static/screenshot.png)