Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ryan-haskell/elm-spa-dev

the docs site we build together at https://v3.elm-spa.dev/guide
https://github.com/ryan-haskell/elm-spa-dev

documentation elm-spa guide

Last synced: 3 months ago
JSON representation

the docs site we build together at https://v3.elm-spa.dev/guide

Awesome Lists containing this project

README

        

# your elm-spa
> learn more at [https://elm-spa.dev](https://elm-spa.dev)

### local development

```
npm run dev
```

## folder structure

```elm
README.md -- this file you're reading 👀
elm.json -- has project dependencies
src/
Main.elm -- the entrypoint to the app
Global.elm -- share state across pages
Transitions.elm -- smoothly animate between pages
Ports.elm -- communicate with JS
Pages/ -- where all your pages go
Layouts/ -- reusable views around pages
Components/ -- views shared across the site
Utils/ -- a place for helper functions
```