An open API service indexing awesome lists of open source software.

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.

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...