Create-React-App意外连接被拒绝

问题描述 投票:1回答:1

当我尝试简单地创建一个新的反应应用程序时,我一直收到以下错误。我甚至在我的计算机上设置了小提琴手,并设置我的代理工作,但我仍然收到以下错误:

ECONNREFUSED 13.107.6.183:443

单击here以获取完整日志

$ create-react-app testmeup

Creating a new React app in C:\***\source\Dev\testmeup.

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

yarn add v1.15.2
[1/4] Resolving packages...
error An unexpected error occurred: "https://pkgs.dev.azure.com/AdmInvestorServices/_packaging/test/npm/registry/react: connect ECONNREFUSED 13.107.6.183:443".
info If you think this is a bug, please open a bug report with the information provided in "C:\\****\\source\\Dev\\testmeup\\yarn-error.log".
info Visit https://yarnpkg.com/en/docs/cli/add for documentation about this command.

Aborting installation.
  yarnpkg add --exact react react-dom react-scripts --cwd C:\Users\***\Dev\testmeup has failed.

Deleting generated file... package.json
Deleting generated file... yarn.lock
Done.
reactjs create-react-app yarnpkg
1个回答
1
投票

这似乎是您的代理设置的问题,因为当您运行create-react-app <app_name>时,yarn无法解决设置新的react项目所需的依赖项,即:reactreact-domreact-scripts

也许您可以尝试设置代理设置,以便安装create-react-app所需的库。根据yarn's documentation

“为了与npm向后兼容,Yarn允许通过环境变量传递npm配置。”

所以也许您可以尝试以下操作,看看这是否有助于解决您的问题:

npm config set proxy <proxy_url>
npm config set https-proxy <proxy_url>

<proxy_url>更改为使用适当的代理。然后你可以告诉yarn在必要时忽略ssl。注意:请自行决定使用。

yarn config set strict-ssl false

npm config set <key> <value>设置npm环境变量,yarn也可以使用。在这种特殊情况下,我们设置proxy环境变量。现在只需再次尝试运行create-react-app命令,它应该能够继续为您设置新的react项目。

希望这有帮助!

© www.soinside.com 2019 - 2024. All rights reserved.