Answers for "> react-scripts start sh: react-scripts: command not found"

1

> [email protected] start > react-scripts start sh: react-scripts: command not found

rm -rf node_modules
rm -rf package-lock.json
npm install
Posted by: Guest on August-10-2021
2

react-scripts: command not found

# delete the node_modules 
rm -rf node_modules

# delete the package-lock.json or yarn.lock 
rm -f package-lock.json
rm -f yarn.lock

# clean the npm cache
npm cache clean --force

# Install the dependencies
npm install
Posted by: Guest on June-08-2022

Code answers related to "> react-scripts start sh: react-scripts: command not found"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language