https://github.com/dingjules/webpack-starter
Quick web app starter with webpack and karma
https://github.com/dingjules/webpack-starter
es6 karma starter-kit webpack2
Last synced: 3 months ago
JSON representation
Quick web app starter with webpack and karma
- Host: GitHub
- URL: https://github.com/dingjules/webpack-starter
- Owner: dingjules
- Created: 2017-11-15T22:17:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-15T22:40:08.000Z (over 7 years ago)
- Last Synced: 2025-01-11T18:49:44.891Z (4 months ago)
- Topics: es6, karma, starter-kit, webpack2
- Language: JavaScript
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Quick webapp starter
A quicke starter with __webpack2__, __karma__
## to start project on dev mode
```
npm install
npm start
```## to run unit tests
```
npm test
```
or to run test with hot reloading
```
npm run test-watch
```
> Coverage reports are generated in _/target/coverage_## to make production version
```
npm run build
```
> Production files are generated in _/target/dist_