Following the instructions on this page I have run:
cabal update
cabal install elm
cabal install elm-server # (Optional) For testing your code in a browser.
cabal install elm-repl # (Optional) For experimenting with elm in a REPL.
cabal install elm-get # (Optional) For sharing/using elm libraries.
Unfortunately, when I run elm-repl
I get that it doesn't know where nodejs is:
Elm REPL 0.3 <https://github.com/elm-lang/elm-repl#elm-repl>
Type :help for help, :exit to exit
The REPL relies on node.js to execute JavaScript code outside the browser.
It appears that you do not have node.js installed though!
You can install node.js from <http://nodejs.org/>. If it is already
installed but has a different name, use the --interpreter flag.
How can I point elm-repl
in the right direction. The other 3 programs work fine so far.