Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ReactJSResources/react-webpack-babel
Simple React Webpack Babel Starter Kit
https://github.com/ReactJSResources/react-webpack-babel
boilerplate javascript reactjs starter starter-kit webpack
Last synced: 2 months ago
JSON representation
Simple React Webpack Babel Starter Kit
- Host: GitHub
- URL: https://github.com/ReactJSResources/react-webpack-babel
- Owner: ReactJSResources
- License: mit
- Created: 2015-06-15T13:21:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-12-13T19:01:38.000Z (about 2 years ago)
- Last Synced: 2024-11-02T01:06:32.282Z (3 months ago)
- Topics: boilerplate, javascript, reactjs, starter, starter-kit, webpack
- Language: JavaScript
- Size: 6.27 MB
- Stars: 1,282
- Watchers: 44
- Forks: 431
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
Simple React Webpack Babel Starter Kit
Tired of complicated starters with more than 250MB of dependencies which are hard to understand and modify? This is for you!
This is a simple react application without redux, stylesheets or other set frameworks. It's only meant to get you started and the rest if up to you. Our goal for is to keep things simple and give you the freedom to select your own frameworks to add on top of this one.### Demo
https://murmuring-fjord-36537.herokuapp.com/### Prerequisites
* You'll need to have [git](https://git-scm.com/) and [node](https://nodejs.org/en/) installed in your system.### To run
* Fork and clone the project:```
git clone https://github.com/ReactJSResources/react-webpack-babel.git
```* Then install the dependencies:
```
npm install
```* Run development server:
```
npm run dev
```Open the web browser to `http://localhost:8080/`
### To test
To run unit tests:```
npm run test
```### To build the production package
```
npm run build
```### Eslint
There is a `.eslintrc.js` config for eslint ready with React plugin.To run linting, run:
```
npm run lint
```### Contribute
Please contribute to the project if you know how to make it better, including this README :)