after running command npm start
npm ERR! This is probably not a problem with npm. There is likely additional logging output above. this error comes
Npm ERR! This is probably not a problem with npm. There is likely additional logging output above
@hardikgupta7500 here are the multiple ways you can follow to create and run react app:
- if you are using npm
npx create-react-app my-app
cd my-app
npm start
- If you are using yarn
yarn create react-app my-app
cd my-app
yarn start
As you are facing problem with npx command try doing
npm init react-app my-app
cd my-app
npm start
I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.
On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.