https://github.com/microzz/react-babel-webpack-framework
The configs about the tools.
https://github.com/microzz/react-babel-webpack-framework
Last synced: about 1 month ago
JSON representation
The configs about the tools.
- Host: GitHub
- URL: https://github.com/microzz/react-babel-webpack-framework
- Owner: microzz
- License: mit
- Created: 2016-12-03T13:07:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-03T14:58:53.000Z (over 9 years ago)
- Last Synced: 2025-12-31T22:45:20.429Z (5 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# webpack-react-kit
another simple webpack react starter kit to help you get to know webpack better
### Update
* using new React Hot Loader 3 (https://github.com/gaearon/react-hot-loader) to replace deprecated react-hmre (https://github.com/gaearon/react-transform-hmr)
* using Enzyme to replace karma test launcher (TODO)
* add ESlint with (airbnb react plugin) to validate JSX style(TODO)
### Features
* Hot Module Replacement for React Component
* Babel for js/jsx processing
* Bootstrap4 framework with SCSS support
* Testing with Enzyme (TODO)
* ESlint to validate JSX style (TODO)
### Demo
With this demo, you can search the github users with keyword
### How to work
*install the deps*
```bash
npm install
```
*run the dev server*
```bash
npm run dev
```
then open http://localhost:8080 to see how it works
*testing*
TODO...