Example Express Web server with RESTful APIs and a React front end.
-
API
This will run Express locally and it will reload when files change
cd api npm run-script start-localThis will run Express locally without watching for file changes
cd api npm start -
UI
cd ui npm start
This will build the React front end and copy its files into the `api/build` directory so that they are served by Express.
```
cd ui
npm run-script deploy-to-express
```
- The port that the Express back end listens on is defined in
api/bin/www. - The port that the React UI listens to is defined in
ui/package.json. See 'start' script.