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
.
- upgrade to
react-router v4
- upgrade to
webpack 2.x
- upgrade
React 15.5.x +
PropTypes
from 'prop-types' (react 15.5 breaking change)
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
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)
- redux-devtools is now replaced by redux-devtools-extension.
Front:
- React JS (15.5.x+ - github 🔗)
- Redux (as you application grows managing state will be a serious concern, save pain with Redux)
- React-Redux (Redux is not specific to ReactJS, you could easily use it with Angular2 for instance)
- redux-devtools-extension (github 🔗)
- React-Router-Redux (previously named react-simple-router)
- react-router (3.x- github 🔗)
- Bootstrap (3.x - github 🔗)
- React-Bootstrap (github 🔗)
- font-awesome (github 🔗)
- animate.css (github 🔗)
- classnames (github 🔗)
- react-motion (github 🔗)
- Webpack 2.x (github 🔗)
- babel 6+ (github 🔗)
- axios (github 🔗 Why: simple, complete, isomorphic ...)
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
npm install
npm run dev
npm run start
npm run test
npm run prod
with server hot reload:
npm run serve-dev
without hot reload:
npm run serve-prod
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.