tinder-clone
tinder-clone copied to clipboard
react script
react-scripts' is not recognized as an internal or external command
You appear to be having trouble using react-scripts. When the command prompt cannot locate the react -scripts package, it will frequently experience this problem.
To fix this problem, make sure that create-react-app has been installed globally on your machine. Run the following command in your terminal to accomplish this:
npm install -g create-react-app Run the following command after installing create-react-app in your project directory:
npm install react-scripts --save This ought to solve the problem and install the react-scripts package. If this is helpful, let me know!