#ES6 Webpack React Boilerplate A little example how to use and build ES6 and React Common ideas:
- write JavaScript code in ES6 syntax
- store JavaScript files in *.es6
- convert es6>es5 via babel
- provide development server with hot code reloading
- provide build tools
##Installation and running in dev mode
- Install dependencies
$ npm install
- Observe via browser
then visit localhost:8086
$ npm run devServer
##Creating build artifact
$ npm run build
then You can find 'build' folder with just created application.
You can check it, just make it available for web server:
$ cd build
$ python -m SimpleHTTPServer 8082
then visit localhost:8082 to see build of Your application.