https://github.com/victorsteven/javascript-algorithms
Famous Javascript Algorithms, All in one
https://github.com/victorsteven/javascript-algorithms
Last synced: 3 months ago
JSON representation
Famous Javascript Algorithms, All in one
- Host: GitHub
- URL: https://github.com/victorsteven/javascript-algorithms
- Owner: victorsteven
- Created: 2019-05-07T17:59:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-05-07T18:00:15.000Z (about 6 years ago)
- Last Synced: 2025-01-11T09:20:27.494Z (5 months ago)
- Language: JavaScript
- Size: 84 KB
- Stars: 0
- Watchers: 2
- 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 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`.