react-boilerplateReact Boilerplate
React Boilerplate
React Redux Boilerplate with Webpack and Hot Module Replacement configuration. Without any front-end frameworks because this is usually switchable part of the whole stack. In the demo files there is also some code repetition, of course this is just becaus I don't wanted to provide more abstraction in the code.
This is a simple React boilerplate with:
- Redux
- Webpack 2
- React Router 4
- Hot Module Replacement
- PostCSS and Scss
- CSS Modules
- React CSS Modules
Usage
$ git clone https://github.com/juliancwirko/react-boilerplate.git
$ cd react-boilerplate
$ npm install
$ npm start
...and go to: http://localhost:3000
Prepare for production
If you are ready to prepare your production files. You can run npm run build
. Webpack will bundle and save all needed files (.js, .css, img, .html) in the public
folder.
CSS and JavaScript linters
There is AirBnB JavaScript styleguide and ESLint configured. You can lint your project by running npm run lint
or using editor plugins.
[TODO] Stylelint integration.
Testing
[TODO] I plan to integrate Jest and other tools
Storybook
[TODO] There will be Storybook on board too.
Data layer
For now I use only standard fetch here. But I plan to use this boilerplan with GraphQL/Apollo so I'll probably prepare another one, very similar to this one, but integrated with Apollo.
License
MIT
Changelog
- 1.0.0 total rewrite, updates etc.