elm-spa

Getting Started

Getting started with elm-spa is easy! Make sure you have the latest stable version of NodeJS installed on your system. At the time of writing, that's version 12.18.2.

npx elm-spa init

After choosing your folder name and UI library, you can enter the new folder and run:

npm start

That's it- your new SPA will be live at http://localhost:8000.

Project Structure

This one-time command will create a new project in a folder called our-elm-spa. Here's an overview of that folder:

elm.json
package.json

public/
├─ index.html
├─ main.js
└─ style.css

src/
├─ Pages/
|  ├─ Top.elm
|  └─ NotFound.elm
├─ Spa/
|  ├─ Document.elm
|  ├─ Page.elm
|  └─ Url.elm
├─ Main.elm
└─ Shared.elm

tests/
└─ README.md

The project folder

There are a few interesting things in the project folder:

File Description
elm.json Defines all of our Elm project dependencies.
package.json Has build, dev, and test scripts so anyone with NodeJS installed can easily run our project.
src/ Where our frontend Elm application lives.
tests/ Where our Elm tests live.
public/ A static directory for serving HTML, JS, CSS, images, and more!

The src Folder

The src folder will contain all your Elm code:

File Description
Pages/Top.elm The homepage for our single page application.
Pages/NotFound.elm The page to show if we're at an invalid route.
Spa/Document.elm The kind of thing each page's view returns (changing this allows support for elm-ui or elm-css)
Spa/Page.elm Defines the four page types (static, sandbox, element, and application)
Spa/Url.elm Defines a type that holds route parameters, query parameters (automatically passed into each page)
Main.elm The entrypoint to the app, that wires everything together.
Shared.elm The place to define layouts and shared data between pages.

The public folder

The public folder is served statically. Use this folder to serve images, CSS, JS, and other static assets.

File Description
index.html The HTML loaded by the server.
main.js The JS that starts our Elm single page application.
style.css A place to add in some CSS styles.

Using assets

Here are examples of how to access files in the public folder via URL:

File Location URL
public/main.js /main.js
public/style.css /style.css
public/images/puppy.png /images/puppy.png

Include the starting slash in your URL! If it's missing, it will look for your assets relative to the current URL, which means some pages will work and others won't. (main.js vs /main.js)


Next up is Installation, which will introduce the CLI.