Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/elmarti/asd
https://github.com/elmarti/asd
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/elmarti/asd
- Owner: elmarti
- Created: 2018-03-15T13:01:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-15T13:01:54.000Z (almost 7 years ago)
- Last Synced: 2024-11-02T20:42:25.043Z (about 2 months ago)
- Language: JavaScript
- Size: 51.8 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
A lightweight foundation for your next webpack based frontend project.
### Installation
```
npm install
```### Start Dev Server
```
npm run dev
```### Build Prod Version
```
npm run build
```### Features:
* ES6 Support via [babel-loader](https://github.com/babel/babel-loader)
* SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
* Linting via [eslint-loader](https://github.com/MoOx/eslint-loader)
* Hot Module ReplacementWhen you run `npm run build` we use the [extract-text-webpack-plugin](https://github.com/webpack/extract-text-webpack-plugin) to move the css to a separate file and included in the head of your `index.html`, so that the styles are applied before any javascript gets loaded. We disabled this function for the dev version, because the loader doesn't support hot module replacement.