Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ruslanguns/js-decorators
https://github.com/ruslanguns/js-decorators
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruslanguns/js-decorators
- Owner: ruslanguns
- Created: 2020-09-08T21:04:44.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T14:30:09.000Z (11 months ago)
- Last Synced: 2024-05-28T17:07:15.578Z (6 months ago)
- Language: JavaScript
- Size: 129 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Webpack Frontend Starterkit
[![Dependabot badge](https://flat.badgen.net/dependabot/wbkd/webpack-starter?icon=dependabot)](https://dependabot.com/)
A lightweight foundation for your next webpack based frontend project.
### Installation
```
npm install
```### Start Dev Server
```
npm start
```### Build Prod Version
```
npm run build
```### Features:
* ES6 Support via [babel](https://babeljs.io/) (v7)
* SASS Support via [sass-loader](https://github.com/jtangelder/sass-loader)
* Linting via [eslint-loader](https://github.com/MoOx/eslint-loader)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`.