https://github.com/wolfadex/elm-resources
A collection of Elm tutorials, guides, and more
https://github.com/wolfadex/elm-resources
Last synced: 12 months ago
JSON representation
A collection of Elm tutorials, guides, and more
- Host: GitHub
- URL: https://github.com/wolfadex/elm-resources
- Owner: wolfadex
- License: mit
- Created: 2019-11-22T14:06:21.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-28T17:21:19.000Z (over 6 years ago)
- Last Synced: 2025-06-05T04:26:28.129Z (about 1 year ago)
- Language: Elm
- Homepage: https://wolfadex.github.io/elm-resources/
- Size: 152 KB
- Stars: 6
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Elm Resources
An opinionated collection of resources for learning and using Elm. Viewable at https://wolfadex.github.io/elm-resources/.
If you have any suggestion, please feel free to make a PR or file an issue.
## Development
- Install [elm](https://guide.elm-lang.org/install/elm.html)
- Install [node](https://nodejs.org/en/)
- Install [terser](https://www.npmjs.com/package/terser)
- Run `elm reactor` while developing
### Production build:
Max/Linux
- Run `./build src/Main.elm`
Windows
- Run `elm make src/Main.elm --optimize --output=elm.js`
- Run `terser elm.js --compress 'pure_funcs="F2,F3,F4,F5,F6,F7,F8,F9,A2,A3,A4,A5,A6,A7,A8,A9",pure_getters,keep_fargs=false,unsafe_comps,unsafe' | terser --mangle --output=elm.min.js`