dragosh / elm-webpack-starter

Boilerplate for developing Elm apps on Webpack

Home Page:http://moarwick.github.io/elm-webpack-starter/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

elm-webpack-starter

A simple Webpack setup for writing Elm apps:

  • Dev server with live reloading, HMR
  • Support for CSS/SCSS (with Autoprefixer), image assets
  • Bootstrap 3.3+ (Sass version)
  • Bundling and minification for deployment
  • Basic app scaffold, using Html.App
  • A snippet of example code to get you started!

Install:

git clone https://github.com/moarwick/elm-webpack-starter
cd elm-webpack-starter
npm install

If you haven't done so yet, install Elm globally:

npm install -g elm

Install Elm's dependencies:

elm package install

Serve locally:

npm start
  • Access app at http://localhost:8080/
  • Get coding! The entry point file is src/Main.elm
  • Browser will refresh automatically on any file changes..

Build & bundle for prod:

npm run build
  • Files are saved into the /dist folder
  • To check it, open dist/index.html

Changelog

Ver 0.6.2

  • Use copy-webpack-plugin instead of cp to copy files (Windows compatible)

Ver 0.6.0

  • elm-hot-loader is back (no Elm code changes required!)
  • Switch to bootstrap-sass to demo CSS

Ver 0.5.0

  • Update to Elm 0.17.0 (and other latest modules)
  • Upgrade starter code per upgrade-docs
  • Remove elm-hot-loader (for now)

Ver 0.4.0

Ver 0.3.0

  • Use html-webpack-plugin to generate index.html
  • Apply hash filenames for bundled JS and CSS (prevents caching)
  • Image and favicon assets copied to dist/

About

Boilerplate for developing Elm apps on Webpack

http://moarwick.github.io/elm-webpack-starter/


Languages

Language:JavaScript 56.1%Language:Elm 32.3%Language:HTML 7.3%Language:CSS 4.3%