Skip to content

jgrenat/elm-workshop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 14, 2020
e99f6e5 · Feb 14, 2020

History

38 Commits
Feb 14, 2020
Feb 14, 2020
May 8, 2019
Feb 14, 2020
Nov 8, 2019
Feb 14, 2020
Feb 14, 2020
Jul 11, 2019
Feb 14, 2020
Feb 14, 2020
Feb 14, 2020
May 8, 2019
May 8, 2019
Jul 12, 2019
Nov 15, 2019
May 8, 2019
Jan 18, 2018
Jul 12, 2019
Nov 15, 2019
Feb 14, 2020

Repository files navigation

Welcome!

Today, we will try to learn Elm together. Before starting to develop in Elm, we need to follow some instructions to have a working dev environment.

Install Elm

You need to download and install Elm through the following link.

Install a plugin for your editor

Install a plugin for your editor to be able to understand Elm. You can find some instructions for these editors (I advice you to use IntelliJ or VS Code):

If you don't want to set up a dev environment, you can use the Ellie online editor – a link will be provided at each step.

Install elm-format

elm-format is a code formatter that will format your Elm code according to a standard set of rules. It looks a lot like prettier, for those who know it. This is not mandatory but strongly advised as it will really improve your experience with Elm.

Follow the instructions on the elm-format page and don't forget to configure your IDE to work with elm-format.

Get the code

You now need to get the code from this repository, either by downloading the archive (click here) or by cloning it:

git clone https://github.com/jgrenat/elm-workshop.git
cd elm-workshop

Workshop

This workshop is divided into several folders corresponding to one step each. To start, first execute the following commands into your terminal at the root of this repository:

elm reactor

You can then open the link http://localhost:8000/. As you can see, elm-reactor allowed us to launch a basic dev environment, and you can see the different folders for each step of the project. You can now start by going into the step 1.

If you need a little reminder about the syntax, you can check this cheat sheet.