Skip to content

gjcarrow/es6-webpack-react-boilerplate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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

  1. Install dependencies
    $ npm install
  2. Observe via browser
    $ npm run devServer
    then visit localhost:8086

##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.

About

Boilerplate app using modern ES syntax

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 70.8%
  • CSS 16.6%
  • HTML 12.6%