elm-boilerplate
v1.3.0
Published
A simple Makefile able to create a new Elm app
Maintainers
Readme
elm-boilerplate
A simple Makefile able to create a new Elm app.
Installation
Make sure you have elm, elm-live, elm-test and elm-css installed :
$ 2> /dev/null npm list --global --depth=0 | grep elmor install them :
$ npm install --global elm elm-live elm-test elm-cssand simply install elm-boilerplate :
$ npm install --global elm-boilerplateCreate a new app
elm-boilerplate allows you to create a new Elm app by using elm-create
$ mkdir hello-world
$ cd hello-world
$ elm create hello world
$ make helpStart dev server
During development, you can use make dev to start elm-live and benefit from livereload
make dev # start dev server on port 8000
make dev PORT=1337 # start dev server on port 1337Start debug server
During debug, you can use make debug to start elm-reactor and benefit from the history
make debug # start debug server on port 8000
make debug PORT=1337 # start debug server on port 1337Run tests
You can run all tests suites with make test or use the watch mode with make test-watch
make test # run tests suites
make test-watch # watch mode