https://github.com/paullaros/webpack-starter
:statue_of_liberty: Webpack + Babel + Sass
https://github.com/paullaros/webpack-starter
es6 javascript nodejs starter-kit webpack webpack-boilerplate webpack-starter-kit
Last synced: about 2 months ago
JSON representation
:statue_of_liberty: Webpack + Babel + Sass
- Host: GitHub
- URL: https://github.com/paullaros/webpack-starter
- Owner: paullaros
- License: mit
- Created: 2017-11-17T12:40:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-08T08:49:05.000Z (almost 7 years ago)
- Last Synced: 2025-03-21T18:51:47.129Z (2 months ago)
- Topics: es6, javascript, nodejs, starter-kit, webpack, webpack-boilerplate, webpack-starter-kit
- Language: JavaScript
- Homepage:
- Size: 180 KB
- Stars: 12
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Webpack Starter



Webpack Starter can be used to quickly set-up a webpack based project. This starter kit is mainly meant for projects that heavily use server-side languages, such as .NET, and serve prerendered HTML. The main use case of this starter kit is bundling JavaScript & CSS and writing those files to disk. Features as hot module replacement and generating HTML are not included.
## Features
- webpack 4
- webpack-serve
- es8: by babel, presets & plugins
- sass support: with autoprefixer
- copy tasks for fonts & images
- eslint: with babel-eslint
- production & development (watch) tasks
- uglifyjs## Quick start
```shell
# Clone our repository
git clone https://github.com/paullaros/webpack-starter.git# Navigate to folder
cd webpack-starter# Install dependencies
npm install# Run development build
npm start# Start webpack dev server on http://localhost:8080
npm run serve# Run production build
npm run build
```