Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliancwirko/react-boilerplate
React Boilerplate
https://github.com/juliancwirko/react-boilerplate
boilerplate css-modules eslint javascript react-boilerplate reactjs webpack
Last synced: about 1 month ago
JSON representation
React Boilerplate
- Host: GitHub
- URL: https://github.com/juliancwirko/react-boilerplate
- Owner: juliancwirko
- Archived: true
- Created: 2015-07-27T08:13:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-24T14:43:53.000Z (over 7 years ago)
- Last Synced: 2024-09-26T17:25:07.148Z (about 1 month ago)
- Topics: boilerplate, css-modules, eslint, javascript, react-boilerplate, reactjs, webpack
- Language: JavaScript
- Homepage:
- Size: 1.18 MB
- Stars: 124
- Watchers: 8
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## 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](http://redux.js.org/)
- [Webpack 2](https://www.npmjs.com/package/webpack)
- [React Router 4](https://www.npmjs.com/package/react-router)
- [Hot Module Replacement](https://webpack.github.io/docs/hot-module-replacement-with-webpack.html)
- [PostCSS and Scss](https://github.com/postcss/postcss)
- [CSS Modules](https://github.com/css-modules/css-modules)
- [React CSS Modules](https://github.com/gajus/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](https://github.com/github/fetch) here. But I plan to use this boilerplan with [GraphQL/Apollo](http://dev.apollodata.com/) 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.