Install NodeJS and NPM
Go to Node.org site Download latest version of NodeJS LTS with Administrator privileges.
Check the versions of installed packages using below commands from command prompot
git --version
node --version
npm --version
Install React
npm install -g create-react-app
create-react-app --version
Create React Project
create-react-app projectname
Run Project
cd projectname
npm start
Once set up is done, update App.js and App.css under src to the code matches here.
Make sure to use own API key generated from Edamam
Also, create Recipe.js and recipe.module.css under src and update with same code in repo