https://github.com/devbyray/reactjs-webpack-babel-postcss
This repo is based on: https://github.com/alicoding/react-webpack-babel
https://github.com/devbyray/reactjs-webpack-babel-postcss
Last synced: 4 months ago
JSON representation
This repo is based on: https://github.com/alicoding/react-webpack-babel
- Host: GitHub
- URL: https://github.com/devbyray/reactjs-webpack-babel-postcss
- Owner: devbyray
- License: mit
- Created: 2016-04-19T19:58:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T20:02:03.000Z (almost 10 years ago)
- Last Synced: 2025-03-01T19:15:03.370Z (about 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-webpack-babel
Simple React Webpack Babel Starter Kit
This is a simple [React](https://facebook.github.io/react/), [Webpack](http://webpack.github.io/) and [Babel](https://babeljs.io/) application with nothing else in it.
### What's in it?
Just a simple [index.jsx](./index.jsx), [webpack.config.js](./webpack.config.js) and [index.html](./public/index.html) file.
### To run
Install webpack and the development server:
```
> $ npm i webpack-dev-server webpack -g
```
You can simply run webpack build using this command:
```
> $ npm run build
```
If you want to run with webpack-dev-server simply run this command:
```
> $ npm run dev
```
Open the web browser to `http://localhost:8080/`
Please contribute to the project if you think this can be done better in anyway even for this README :)