This is a React JS monorepo where Client and Server run simultaneously.
Prerequisites:
- installed NodeJS v14 or higher
Install yarn with the cmd below:
npm install --global yarn
After installation run
yarn install
if you see networ errors like below:
[1/4] 🔍 Resolving packages...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
try re-running install script with timeout:
yarn cache clean
yarn install --network-timeout 1000000
- both Clent and Server
yarn dev
- start server only:
yarn --cwd server dev
- start client only:
yarn --cwd client start
- Installation: [https://classic.yarnpkg.com/en/docs/install]
- Usage: [https://classic.yarnpkg.com/en/docs/usage]
- Workspaces: [https://classic.yarnpkg.com/en/docs/workspaces]