Unable to create react app using npx create-react-app

Viewed 731

I tried npx create-react-app command on terminal but I'm getting the following error:-

npm ERR! code E403
npm ERR! 403 403 Forbidden - GET https://registry.npmjs.org/create-react-app
npm ERR! 403 In most cases, you or one of your dependencies are requesting
npm ERR! 403 a package version that is forbidden by your security policy.

npm -v is 6.14.11
node -v is v12.21.0
Please help.
1 Answers

Just Try to use sudo npx create-react-app if still not working Test this solution

npm init
npm install create-react-app
npx create-react-app myapp

Related