underfilho
underfilho

Reputation: 211

How can I download create-react-native-app files manually?

I trying to create a react native project, but always it gives me an download error (the create-react-native-app is installed), I try:

create-react-native-app Test

But always in the file ngrok-2.3.0.tgz I get an error. I downloaded the file manually, but I don't know where it goes, I try to put in AppData/Local/Temp (shown in the error text), but when running the command again, it overwrite the file and try to download it over again. Where are the react-native files to which I can put ngrok-2.3.0.tgz manually?

Upvotes: 1

Views: 852

Answers (1)

mrbarletta
mrbarletta

Reputation: 922

The registry had some issues a few days ago resulting in the same error.

Take a look https://github.com/npm/npm/issues/19816

  • You can also try doing things with yarn
  • Offline packages can be done with yarn link ngrok which will indicate yarn/npm to get the local copy of ngrok.

Upvotes: 1

Related Questions