Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pupudu/express-react-starter
https://github.com/pupudu/express-react-starter
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pupudu/express-react-starter
- Owner: pupudu
- Created: 2020-05-02T16:16:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-06T01:44:05.000Z (almost 4 years ago)
- Last Synced: 2024-10-22T04:27:22.962Z (2 months ago)
- Language: JavaScript
- Size: 8.49 MB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting started
Make sure you have `yarn` installed.
### Development
```shell script
yarn # Install dependencies
yarn start:server # Start server on PORT=8000
yarn start # Start frontend on PORT=3000
```
Then go to http://localhost:3000### Production
```shell script
yarn build # Build frontend app
yarn start:server # Start server
```
Then go to http://localhost:8000## Directory structure
Frontend code is in `src/`Backend(server) code is in `server/`