Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladimirlogachev/elm-app-template
Simple elm template
https://github.com/vladimirlogachev/elm-app-template
Last synced: about 1 month ago
JSON representation
Simple elm template
- Host: GitHub
- URL: https://github.com/vladimirlogachev/elm-app-template
- Owner: vladimirlogachev
- License: mit
- Created: 2022-05-07T16:15:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-25T12:00:24.000Z (over 1 year ago)
- Last Synced: 2024-10-12T20:10:52.695Z (2 months ago)
- Language: Elm
- Size: 78.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elm app
Simple elm app template
## Set up
- Install Elm: https://guide.elm-lang.org/install/elm.html
- `npm i`## Run
- `npm start` – run dev server, watching files
- Open http://localhost:4040## Other NPM scripts
- `npm run start-debug` – run dev server, watching files, with Elm debugger
- `npm run start-optimized` – run dev server, watching files, enable Elm compiler production optimizations
- `npm run typecheck` – compile, but don't run
- `npm run test-watch` – run unit tests, watching files
- `npm test` – run unit tests
- `npm run format-fix-all` – format all files
- `npm run format-validate` – check if files are formatted properly
- `npm run review` – lint the code, fail on linter warning
- `npm run review-fix-interactive` – lint the code, fix errors interactively
- `npm run review-fix-all` – lint the code, fix errors automatically
- `npm run precommit` – format, lint and test, for CI
- `npm run precommit-fix` – format, lint and test, fix automatically## Useful links
- [Elm-ui patterns](https://korban.net/elm/elm-ui-patterns/button)