Skip to content

Latest commit

 

History

History
140 lines (102 loc) · 5.09 KB

File metadata and controls

140 lines (102 loc) · 5.09 KB

React + React-Router + Redux + Bootstrap + Webpack 2 with Hot Reload and redux-devtools STARTER

license Build Status Coverage Status

My best React + redux project starter.

  • webpack is as simple as possible
  • ReactJS is written with optimization tricks (stateless, pure render...).
  • pure front-end = server independant (use whatever you want as server: NodeJS, Rails, .NET...)

Concept behind: same as react-bootstrap-webpack-starter but added Redux and amazing and helpful redux-devtools.

Breaking changes since v3.0.0

  • upgrade to react-router v4

Breaking changes since v2.3.0

  • upgrade to webpack 2.x
  • upgrade React 15.5.x +
  • PropTypes from 'prop-types' (react 15.5 breaking change)

Breaking changes since v2.2.0

  • cross-env added so no more particular windows command
  • serve dev and prod bundles
  • npm run serve-dev: with server hot reload (uses nodemon)
  • npm run serve-prod: production like node-express server

Breaking changes since v2.1.0

  • whatwg-fetch is now replaced by axios.
  • react-addons-shallow-compare is removed since ReactJS 15.4+ PureComponent does the job
  • splits vendors script and css from main bundle (extract-text-webpack-plugin v1.x)
  • create map file (DEV)
  • prepared launch.json for VSCode debugger
  • add typescript types (typings)
  • add flow types (flow-typed)

Breaking changes since v2.0.0

Detailed Content

Front:

Tool chain:

  • babel 6+
  • eslint
  • webpack 2
  • hot reload
  • loaders
    • js / jsx
    • sass
    • css
    • json
    • images formats
    • svg and fonts formats

tests:

  • Mocha
  • Chai (+ dirty-chai)
  • enzyme
  • Sinon
  • nyc

Usage

Install

npm install

bundle dev mode (+ redux-devtools)

npm run dev

dev : hot reload mode (+ redux-devtools)

npm run start

tests

npm run test

bundle production mode

npm run prod

mini node-express server (for dev or prod bundles)

with server hot reload:

npm run serve-dev

without hot reload:

npm run serve-prod

License

The MIT License (MIT)

Copyright (c) 2017 Erwan DATIN

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.