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.
- Host: GitHub
- URL: https://github.com/parksben/react-spa-app
- Owner: parksben
- Created: 2018-01-10T18:56:37.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-28T17:14:11.000Z (over 8 years ago)
- Last Synced: 2025-03-24T03:23:55.920Z (about 1 year ago)
- Topics: create-react-app, customized, frontend-app, reactjs
- Language: JavaScript
- Homepage:
- Size: 78.1 KB
- Stars: 12
- Watchers: 3
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.