Skip to content

Latest commit

 

History

History

webapp

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Elm Examples: Web Application

Example of single-page web application based on elm-webpack-boilerplate using Webpack, Elm and Sass. It demonstrates how to use navigation, how you can split Elm application code into multiple modules, and how to build the application for production.

You need to install server dependencies using yarn:

$ yarn

Then, you can run the server:

$ yarn server

The Elm application can be run in development mode with hot reload using Webpack:

$ yarn start

If you want to create a production build, use:

$ yarn build

Format js and ELM code with prettier and elm-format:

$ yarn format