Reputation: 211
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
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
yarn link ngrok
which will indicate yarn/npm to get the local copy of ngrok.Upvotes: 1