0

While running npx create-react-app command the process got stuck at fetchMetadata: sill resolveWithNewModule create-react-app@4.0.3 checking installable status. How can I solve this issue ?

subash poudel
  • 37
  • 1
  • 7
  • Additional information such as other dependencies, network situation, etc—maybe even a sample repo—might lead to better answers. – Rahman Malik Jun 15 '21 at 19:22

2 Answers2

0

Give this a shot:

npm config set registry "http://registry.npmjs.org"

(from: https://stackoverflow.com/a/55914481/3317728)

StefanBob
  • 4,857
  • 2
  • 32
  • 38
-2

You will have to do this: npm install --global yarn

  • Why `npm install --global yarn`? If this works, why? Are you sure it's not a network connectivity issue such as proxies? And what if the OP isn't using yarn? – Rahman Malik Jun 15 '21 at 19:19