Setup
Last updated
Was this helpful?
Last updated
Was this helpful?
In this workshop you will work on an existing Elm app, and add features to the app, as you learn different techniques that are used in real world Elm apps.
The app you will be working with displays articles. Your job will be to implement comments on the articles.
Clone the repo using the following command in your terminal:
This will create a directory called elm-workshop
. Navigate to the directory:
The app uses npm
. Intall dependencies using the following command (don't use npm install
):
Start the app:
You should now see the following in your terminal:
And if you go to localhost:8080 in your browser, you should see a working app.
To get started, jump to Task 1.