https://github.com/markmur/new-react-project
Scaffold a new React project. Instantly start building something.
https://github.com/markmur/new-react-project
react react-router-v4 scaffold webpack2
Last synced: 3 months ago
JSON representation
Scaffold a new React project. Instantly start building something.
- Host: GitHub
- URL: https://github.com/markmur/new-react-project
- Owner: markmur
- Created: 2016-09-16T06:55:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-08T22:17:15.000Z (about 9 years ago)
- Last Synced: 2025-09-26T17:58:53.872Z (8 months ago)
- Topics: react, react-router-v4, scaffold, webpack2
- Language: JavaScript
- Homepage:
- Size: 794 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# New React Project
A tool for scaffolding [React](https://facebook.github.io/react/) apps with Webpack.
## Includes
* [React](https://facebook.github.io/react/)
* [React Router V4](https://github.com/reactjs/react-router)
* [Webpack 2](https://github.com/webpack/webpack)
* [Babel (ES2015)](https://babeljs.io)
* [Sass](https://github.com/jtangelder/sass-loader)
* [Autoprefixer](https://github.com/passy/autoprefixer-loader)
* [React Hot Loader V3](https://github.com/gaearon/react-hot-loader)
___
### Usage
Install globally:
```shell
npm install -g new-react-project
```
```bash
new-react-project ProjectName
```
or
```bash
nrp ProjectName
```
___
### Run (Development)
`npm start`
To view your app, go to `http://localhost:8080` in your browser.
___
### Run (Production)
`npm run build`
___