https://github.com/kmuncie/joyofjavascript
https://github.com/kmuncie/joyofjavascript
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/kmuncie/joyofjavascript
- Owner: kmuncie
- License: mit
- Created: 2022-12-16T20:12:55.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-13T05:20:14.000Z (about 2 years ago)
- Last Synced: 2023-04-01T05:49:47.584Z (about 2 years ago)
- Language: JavaScript
- Size: 2.11 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
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`.