No description
Find a file
2012-04-27 19:58:18 -03:00
core-js Add Maybe datatype. Add "gets" and "posts" to HTTP library. Correct error with (/=) operator. 2012-04-23 15:52:14 -04:00
src Merge pull request #2 from michaelt/master 2012-04-27 10:07:39 -07:00
elm-mini.js Add Maybe datatype. Add "gets" and "posts" to HTTP library. Correct error with (/=) operator. 2012-04-23 15:52:14 -04:00
Elm.cabal Fix .cabal file more. Remove dependence on Types.hs from Parse/ParsePatterns.hs. 2012-04-26 04:19:55 -04:00
LICENSE Initial commit. 2012-04-19 02:32:10 -04:00
README Initial commit. 2012-04-19 02:32:10 -04:00
README.md Add better advice 2012-04-27 19:58:18 -03:00
Setup.hs Initial commit. 2012-04-19 02:32:10 -04:00

Elm

This is the Elm compiler and server, allowing you to develop Elm applications that run in any modern browser.

Installation Process

Download the Haskell Platform. This will give you access to the Haskell compiler (needed to build Elm) and Haskell's package distribution system (to make installation of Elm easier). Once installed (even if it already was), you must update your listing of Haskell packages with:

cabal update

This will ensure that the elm package is available. Then install Elm with:

cabal install elm

Assuming everything goes correctly (potential problems are discussed later), this will build two executables on your machine:

  • elm :: A standard compiler that takes .elm files and produces .html files. You can then use these HTML files with your favorite web-framework.

  • elm-server :: This is both a compiler and server, allowing you to develop without designing and setting up a server yourself. Running the "elm-server" program starts a server in the current directory. It will compile and serve any .elm files in the current directory and its sub-directories. This is how I prefer to develop Elm programs.

To use these executables you need to add a new directory to your PATH. For me, the executables were placed in /home/evan/.cabal/bin which I appended to the end of my PATH variable in my .bashrc file. Cabal should tell you where your executables are located, so you can make a similar addition (see this tutorial if you are new to changing your PATH in Unix/Linux).

That is almost everything. Now, we will create a simple Elm project. The following commands will set-up a very basic project and start the Elm server.

mkdir helloElm
cd helloElm
wget https://raw.github.com/evancz/Elm/master/elm-mini.js
echo main = lift asText Mouse.position > main.elm
elm-server

The first two commands create a new directory and navigate into it. Then next command (wget) downloads the elm-mini.js file which is the Elm runtime system and must be in the root directory of your Elm project. If you do not have wget, just follow this link and download it directly. The 'echo' command places a simple program into 'main.elm'. The final command starts the Elm server at localhost, allowing you to navigate to 'main.elm' and see your first program in action.

Areas for further work:

Error messages need work in general. Syntax and Parsing errors are reported, but the messages are not very helpful. Type errors currently go unreported. I hope to fix this as soon as possible.

If you are interested in contributing, please contact me at info (at) elm-lang (dot) org.

Potential problems and their solutions:

  • When installing on Debian, "blaze-html-0.4.3.2" fails to compile. You must install "blaze-html-0.4.3.1" instead.
  • Elm does not appear to work with the latest versions of "containers" (i.e. 0.4.2.*). I know it works with containers-0.3.0.0, so to avoid this problem, you can try: cabal install elm --constrain="containers==0.4.1.0" --force-reinstall
  • On Windows, HAppStack has trouble installing because of issues with the "network" package. I struggled with this problem on Windows 7 until I found the suggestion at the bottom of this page.
  • Likely more to come...