Webpack Starter

This repo serves as a minimal start for webpack with ES6 ,SASS.

  • Transpiling from ES6 to ES5 with Babel
  • Handled css and sass,Access using import("/test.scss") and with after build all style will be in one file app.css.
  • Store static file in /static directory
  • Bundling the app

Getting Started

Dependencies

Tools needed to run this app:

  • node and npm

Installing

  • fork this repo
  • clone your fork
  • npm install to install dependencies

Development

  • npm run dev to start development server on port 8080
  • npm run build to build application
  • npm run http to serve build version on port 8080
  • npm run build-http to build & serve build version on port 8080