No description
Find a file
2013-12-17 15:44:45 -08:00
compiler Add instances for generating JSON 2013-12-17 12:16:40 -08:00
libraries more typos 2013-12-17 15:44:45 -08:00
runtime Merge branch 'master' into dev 2013-11-19 22:34:08 -08:00
server Stop using a custom cache directory, and stop deleting the cache immediately. Also clean up related code. 2013-10-30 16:31:29 +01:00
tests Add occurs check and a test to make sure it works 2013-08-19 22:39:41 -07:00
.gitignore add the new data dir to ignore 2013-08-09 23:39:34 -07:00
changelog.txt Add notes about sorting and laziness 2013-12-09 14:14:04 -08:00
CONTRIBUTE.md Mess around with wording and switch to using a pdf for the contributor agreement 2013-12-13 17:54:27 -08:00
ContributorAgreement.pdf Mess around with wording and switch to using a pdf for the contributor agreement 2013-12-13 17:54:27 -08:00
Elm.cabal Get rid of Build.Info file, move compiler version to Elm.Internal.Version and use Elm's version conventions 2013-12-17 11:36:05 -08:00
LICENSE It's 2013 everyone! 2013-09-13 12:09:10 -07:00
README.md Update README.md 2013-11-07 18:59:50 +01:00
Setup.hs Fix cabal configure in Cabal version 1.18. 2013-09-21 16:52:01 -05:00

Learn about the Elm programming language at elm-lang.org.

Install

Note for OS X 10.9 Maverics: you must follow these directions before continuing!

Download the Haskell Platform 2012.2.0.0 or later. Once the Haskell Platform is installed:

cabal update
cabal install elm
cabal install elm-server

Use

To use elm and elm-server you may need to add a new directory to your PATH.

Cabal should tell you where your executables are located upon successful installation.

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.

See this tutorial if you are new to changing your PATH in Unix/Linux.

My First Project

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
printf "import Mouse\n\nmain = lift asText Mouse.position" > Main.elm
elm-server

The first two commands create a new directory and navigate into it. The printf commands place a simple program into Main.elm. Do this manually if you do not have printf. The final command starts the Elm server at localhost:8000, allowing you to navigate to Main.elm and see your first program in action.

Final Notes

The elm package provides support for compilation of Elm code directly in Haskell. Check it out on Hackage if you are interested.

If you are stuck, email the list or ask a question in the #Elm IRC channel.