Create-React-App 意外连接被拒绝
Create-React-App Unexpected Connection Refused
当我尝试简单地创建一个新的 React 应用程序时,我不断收到以下错误。我什至在我的电脑上设置了 fiddler 并设置了我的代理来使用它,但我仍然收到以下错误:
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.
这似乎是 您的代理设置问题 因为当您 运行 create-react-app <app_name>
yarn
无法解决设置新 react
项目所需的依赖项,即:react
、react-dom
和 react-scripts
。
也许您可以尝试设置您的代理设置,这样您就可以安装 create-react-app
需要的必要库。根据yarn's
documentation:
"For backward compatiibilty with npm, Yarn allows passing down npm configuration via environment variables."
也许您可以尝试以下方法,看看是否有助于解决您的问题:
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
项目。
希望对您有所帮助!
当我尝试简单地创建一个新的 React 应用程序时,我不断收到以下错误。我什至在我的电脑上设置了 fiddler 并设置了我的代理来使用它,但我仍然收到以下错误:
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.
这似乎是 您的代理设置问题 因为当您 运行 create-react-app <app_name>
yarn
无法解决设置新 react
项目所需的依赖项,即:react
、react-dom
和 react-scripts
。
也许您可以尝试设置您的代理设置,这样您就可以安装 create-react-app
需要的必要库。根据yarn's
documentation:
"For backward compatiibilty with npm, Yarn allows passing down npm configuration via environment variables."
也许您可以尝试以下方法,看看是否有助于解决您的问题:
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
项目。
希望对您有所帮助!