我正在使用MacBook,当我尝试创建一个React Native应用程序时,它会抛出ESOCKETTIMEDOUT
错误。
我尝试过清理npm和yarn缓存,但没有帮助。
react-native init AwesomeProject
This will walk you through creating a new React Native project in /Users/gaurang.shah/Documents/personal/code/mobile/AwesomeProject
Using yarn v1.13.0
Installing react-native...
yarn add v1.13.0
info No lockfile found.
[1/4] 🔍 Resolving packages...
[2/4] 🚚 Fetching packages...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
info There appears to be trouble with your network connection. Retrying...
error An unexpected error occurred: "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz: ESOCKETTIMEDOUT".
info If you think this is a bug, please open a bug report with the information provided in "/Users/gaurang.shah/Documents/personal/code/mobile/AwesomeProject/yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.
我可以通过浏览器下载https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz
文件,所以它不可能是网络问题。
Stacktrace
Yarn version:
1.13.0
Node version:
11.10.0
Platform:
darwin x64
Trace:
Error: https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz: ESOCKETTIMEDOUT
at ClientRequest.<anonymous> (/usr/local/Cellar/yarn/1.13.0/libexec/lib/cli.js:130024:19)
at Object.onceWrapper (events.js:285:13)
at ClientRequest.emit (events.js:197:13)
at TLSSocket.emitRequestTimeout (_http_client.js:669:40)
at Object.onceWrapper (events.js:285:13)
at TLSSocket.emit (events.js:197:13)
at TLSSocket.Socket._onTimeout (net.js:447:8)
at listOnTimeout (timers.js:327:15)
at processTimers (timers.js:271:5)
npm manifest:
{"name":"AwesomeProject","version":"0.0.1","private":true,"scripts":{"start":"node node_modules/react-native/local-cli/cli.js start"}}
yarn manifest:
No manifest
Lockfile:
No lockfile
3条答案
按热度按时间vc6uscn91#
在缓慢的网络上检索大包时遇到了同样的问题。正如这条评论所建议的,增加安装软件包的网络超时对我来说很有效。
首先,预先创建项目目录,然后在其中创建一个
.yarnrc
文件,其内容如下:现在,只需像您所做的那样从项目的父目录运行
react-native init <project_name>
命令。它相当于像这样运行
yarn
:nxowjjhe2#
如果可以使用npm,请使用'
npm install
',它生成package-lock.json
或'yarn install --network-timeout <time in ms>
',它生成yarn.lock
。两个都适合我。relj7zay3#