michelrandahl / elm-japanese-training

small web app in Elm for japanese training

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

compile with debug flag:

$ elm make src/Quiz.elm --debug --output app.js

continous linting while working:

$ find src/ | entr -cps 'elm-analyse | grep -v INFO'

continous compiling (and type checking) while working:

$ find src/ | entr -cps 'elm make src/Quiz.elm --debug --output app.js'

continous compile and lint and write report

$ find src/ | entr -cps 'elm make --output=app.js --debug src/Quiz.elm && elm-analyse' 2>&1 | tee analyse.report

serve html and javascript using python

$ python -m "http.server" 8000

About

small web app in Elm for japanese training


Languages

Language:Elm 92.2%Language:HTML 7.6%Language:Python 0.2%