https://github.com/vitorcamachoo/webpack-starter
A very simple project starter with webpack composed with the latest features
https://github.com/vitorcamachoo/webpack-starter
bootstrap nodejs starter-kit webpack
Last synced: 12 months ago
JSON representation
A very simple project starter with webpack composed with the latest features
- Host: GitHub
- URL: https://github.com/vitorcamachoo/webpack-starter
- Owner: vitorcamachoo
- License: mit
- Created: 2016-11-12T15:44:41.000Z (over 9 years ago)
- Default Branch: develop
- Last Pushed: 2017-12-17T13:12:47.000Z (over 8 years ago)
- Last Synced: 2025-06-02T22:51:57.886Z (about 1 year ago)
- Topics: bootstrap, nodejs, starter-kit, webpack
- Language: JavaScript
- Homepage:
- Size: 34.2 KB
- Stars: 19
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/vitorcamachoo/webpack-starter)
[](https://greenkeeper.io/)
# Webpack-starter
A very simple project starter with webpack composed with the latest features
## Installation
```sh
npm install
```
## Development Server
```sh
npm start
```
## Non minified Build (development environment)
```sh
npm run build:dev
```
## Minified Build (production environment)
```sh
npm run build:prod
```
# Features
* Hot Reload
* Sass support ([sass-loader](https://github.com/jtangelder/sass-loader))
* Last EcmaScript version ([babel-loader](https://github.com/babel/babel-loader) with [babel-preset-env](https://github.com/babel/babel-preset-env))
* Generate HTML automatically ([html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin))
* Extract styles on production ([extract-text-plugin](https://github.com/webpack/extract-text-webpack-plugin))