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

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.

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`

___