How do I fix this npm create react app issue
Npm create-react-app not working. Usage: npm<command>
Collapse
X
-
Npm create-react-app not working. Usage: npm<command>
Tags: None -
Hi Joshuaschist,
So you are usingCode:npm create-react-app react-timer
Code:npm install create-react-app react-timer
Code:npx create-react-app my-app
Thanks,
Sumit Sahu -
Run npm install create-react-app first, then "npm" shouldn't be added to the create-react-app again..
Then create-react-app react-timer should run next after installation of npm i create-react-appComment
-
First run
npm cache clean -f
then try with these command
Install the global package.
npm install create-react-app -g
Create a new project called demo-app:
create-react-app <Project Name>
create-react-app demo-app
References : How to create ReactJS ApplicationComment
Comment