Yarn Starter Kit

This is a React JS monorepo where Client and Server run simultaneously.

Prerequisites:

  • installed NodeJS v14 or higher

Installation of Yarn and npm packages:

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

Running project:

  • both Clent and Server
yarn dev
  • start server only:
yarn --cwd server dev
  • start client only:
yarn --cwd client start

More about Yarn and Workspaces: