https://github.com/tomarrell/react-express-skeleton
A Simple React + Express Application Skeleton
https://github.com/tomarrell/react-express-skeleton
Last synced: over 1 year ago
JSON representation
A Simple React + Express Application Skeleton
- Host: GitHub
- URL: https://github.com/tomarrell/react-express-skeleton
- Owner: tomarrell
- License: mit
- Created: 2016-11-23T09:31:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2021-05-27T13:48:38.000Z (about 5 years ago)
- Last Synced: 2024-10-15T16:14:21.567Z (over 1 year ago)
- Language: JavaScript
- Size: 490 KB
- Stars: 4
- Watchers: 4
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# React + Express Skeleton
A simple React and Express skeleton to get your application up and running quickly.
## Installation and Setup
Clone the repository locally.
```
git clone https://github.com/tomarrell/React-Express-Skeleton.git
```
Then install dependencies. It is recommended you use NPM, however Yarn will work as well.
```
npm i
```
## Starting the application
To run the backend service:
```
npm run backend
```
and to run the React-Redux frontend
```
npm start
```