Home > Software engineering >  Cannot use create-react-app as it shows below error
Cannot use create-react-app as it shows below error

Time:08-24

PS D:\Reactjs> npx create-react-app textutils

Creating a new React app in D:\Reactjs\textutils.

Installing packages. This might take a couple of minutes. Installing react, react-dom, and react-scripts with cra-template...

npm ERR! code FETCH_ERROR npm ERR! errno FETCH_ERROR npm ERR! invalid json response body at https://registry.npmjs.org/@typescript-eslint/scope-manager reason: Invalid response body while trying to fetch https://registry.npmjs.org/@typescript-eslint/scope-manager: read ECONNRESET

npm ERR! A complete log of this run can be found in: npm ERR! C:\Users\Ashes10\AppData\Local\npm-cache_logs\2022-08-22T05_43_38_991Z-debug-0.log

Aborting installation. npm install --no-audit --save --save-exact --loglevel error react react-dom react-scripts cra-template has failed.

Deleting generated file... package.json Deleting textutils/ from D:\Reactjs Done.

CodePudding user response:

Maybe this gonna work

npm cache clean --force

CodePudding user response:

Might be because of the cache issue. To fix this, try the below command,

npm cache clean --force

If the issue still persists. Run the below command to install create-react-app,

npm install -g create-react-app

And then, Try creating your react application,

npx create-react-app appname

CodePudding user response:

I was using this command in vs code terminal where I was facing this error. Later I tried it in cmd and it worked.

  • Related