Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/wbkd/webpack-starter

✨ A lightweight foundation for your next webpack based frontend project.
https://github.com/wbkd/webpack-starter

babel babel7 boilerplate es6 frontend javascript sass starter-kit webpack

Last synced: 7 days ago
JSON representation

✨ A lightweight foundation for your next webpack based frontend project.

Awesome Lists containing this project

README

        

# Webpack Frontend Starterkit

A lightweight foundation for your next webpack based frontend project.

### Installation

```sh
npm install
```

### Start Dev Server

```sh
npm start
```

### Build Prod Version

```sh
npm run build
```

### Features:

- ES6 Support via [babel](https://babeljs.io/) (v7)
- JavaScript Linting via [eslint](https://eslint.org/)
- SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
- Autoprefixing of browserspecific CSS rules via [postcss](https://postcss.org/) and [postcss-preset-env](https://github.com/csstools/postcss-preset-env)
- Style Linting via [stylelint](https://stylelint.io/)

When you run `npm run build` we use the [mini-css-extract-plugin](https://github.com/webpack-contrib/mini-css-extract-plugin) to move the css to a separate file. The css file gets included in the head of the `index.html`.