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

https://github.com/parksben/react-spa-app

An single-page app skeleton in React, main structures comes from Create-React-App.
https://github.com/parksben/react-spa-app

create-react-app customized frontend-app reactjs

Last synced: 9 months ago
JSON representation

An single-page app skeleton in React, main structures comes from Create-React-App.

Awesome Lists containing this project

README

          

# React SPA App

An single-page app skeleton in React, main structures comes from [Create-React-App](https://github.com/facebookincubator/create-react-app/blob/master/README.md).

## Features

* Tweak the webpack config(s) with using "react-app-rewired".
* Backward compatibility for browsers with using "core-js".
* Easier to achieve different page routes management.
* Convenient to achieve different pages by writing different react container components.
* Convenient to implement page interfaces with using "antd".
* Convenient to implement data requests between the front and back ends with using "axios".

## Quick Overview

1. Clone this project to local, then use the `yarn` command to install the project in local directory. Then you can run some built-in commands such as:
* `yarn start` -> Runs the app in development mode (on port 3000).
* `yarn build` -> Builds the app for production to the build folder.
* `yarn test` -> Runs the test watcher in an interactive mode.

2. You can see the [Create-React-App](https://github.com/facebookincubator/create-react-app/blob/master/README.md) project for more information.