https://github.com/mrmurphy/elm-starter
A starter kit for writing front-end apps with Elm
https://github.com/mrmurphy/elm-starter
Last synced: 3 months ago
JSON representation
A starter kit for writing front-end apps with Elm
- Host: GitHub
- URL: https://github.com/mrmurphy/elm-starter
- Owner: mrmurphy
- Created: 2015-08-07T00:27:38.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2017-01-16T22:10:12.000Z (over 9 years ago)
- Last Synced: 2024-05-01T20:31:47.984Z (about 2 years ago)
- Language: Elm
- Size: 62.5 KB
- Stars: 54
- Watchers: 6
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# ELM-STARTER!


## Quickstart
- `npm install`
- `npm start` : Runs `serve` and `watch` concurrently for you
Other scripts:
- `npm run build` : Builds the elm source to public/built/index.js
- `npm run watch` : Watches elm files in src for changes, and runs `build` when changes are detected
- `npm run serve` : Starts up a server in the public directory, and live-reloads when public/built/*.js or public/*.css change
Style notes:
Bootstrap CSS (but not JS) is included.
## Getting Elm set up for the first time
After running `npm install`, a version of Elm will be installed into your
node modules folder, and can be interacted with by running `./node_modules/.bin/elm`.
That folder can just be added to your path, or you can install Elm globally
by typing `npm install -g elm`
Wahoo!