Make sure you have node installed. If not download and install node.
After installing NodeJS you can verify the install of both NodeJS and Node Package Manager by typing the following commands. This step needs to be followed only once i.e. if you don't have NodeJS installed. No need to repeat it ever again.
node -v
# v10.16.3
npm -v
# 6.10.3# Clone the repo
git clone https://github.com/PC-RobinHood/notes.git
# Navigate to clonned folder and Install dependencies
cd notes && yarn install# Start the app
yarn start