summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoryaniv-l <yanivl@srl.co.il>2016-10-29 12:01:51 +0300
committerGitHub <noreply@github.com>2016-10-29 12:01:51 +0300
commitd463155d195e2fd66975c1b0687d004cf65bfd27 (patch)
tree31d622c9eebc90533ae703f125914523423b3a41
parent18a9f93da0f6020bc213583fff171003140ffdd8 (diff)
Update README.md
In the Elm section, added instruction to install elm package prior to elm make src/elm/Main.elm --output src/static/bundle.js.
-rw-r--r--README.md8
1 files changed, 7 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1bf4a62..59d0e89 100644
--- a/README.md
+++ b/README.md
@@ -146,7 +146,13 @@ main =
text "Hello Electron. I'm Elm."
```
-Now let's turn this Elm code into javascript. Elm will also install some packages.
+Now let's turn this Elm code into javascript.
+First, install elm package using:
+
+```
+sudo npm install -g elm
+```
+Once installed, issue "elm make" command below that will turn the Elm code into javascript. Elm will also install some packages.
```
$ elm make src/elm/Main.elm --output src/static/bundle.js