Accelerated-ES6-JavaScript-Course-Project

Accelerated ES6 JavaScript Course Project: local development setup with babel and webpack

Course: Accelerated ES6 JavaScript Training by Maximilian Schwarzmüller

Completed Course Project Demo

Attribution:

This project was forked from https://github.com/wbkd/webpack-starter

Installation

npm install

Start Dev Server

npm run dev

Build Prod Version

npm run build

Features:

When running npm run build the extract-text-webpack-plugin is used to move the css to a separate file and included in the head of the index.html, so that the styles are applied before any javascript gets loaded. This function is disabled for the dev version, because the loader doesn't support hot module replacement.