angularjs 运行npm install时无法验证第一个证书

fquxozlt  于 2023-06-21  发布在  Angular
关注(0)|答案(5)|浏览(113)

我正在看Angular2教程:https://github.com/angular/quickstart/blob/master/README.md
然而,当我按照指南运行npm安装时,我最初得到了一个与UNABLE_TO_VERIFY_LEAF_SIGNATURE相关的错误。在谷歌上搜索似乎与SSL证书有关,所以我试图通过使用以下命令来解决这个问题:

npm config set strict-ssl false

然后我重试了npm install
这得到了一点进一步,但随后得到了与“无法验证第一个证书”相关的新错误:

typings ERR! message Unable to connect to "https://api.typings.org/entries/dt/core-js/tags/0.0.0%2B20160725163759"
typings ERR! caused by unable to verify the first certificate

typings ERR! cwd c:\Code\Angular2\Quickstart
typings ERR! system Windows_NT 6.1.7601
typings ERR! command "C:\\Program Files\\nodejs\\node.exe" "c:\\Code\\Angular2\\Quickstart\\node_modules\\typings\\dist\\bin.js" "install"
typings ERR! node -v v6.7.0
typings ERR! typings -v 1.4.0
typings ERR! code EUNAVAILABLE

typings ERR! If you need help, you may report this error at:
typings ERR!   <https://github.com/typings/typings/issues>

npm WARN optional Skipping failed optional dependency /chokidar/fsevents:
npm WARN notsup Not compatible with your operating system or architecture: fsevents@1.0.14
npm WARN angular-quickstart@1.0.0 No license field.
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "install"
npm ERR! node v6.7.0
npm ERR! npm  v3.10.3
npm ERR! code ELIFECYCLE
npm ERR! angular-quickstart@1.0.0 postinstall: `typings install`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the angular-quickstart@1.0.0 postinstall script 'typings install'.
npm ERR! Make sure you have the latest version of node.js and npm installed.
npm ERR! If you do, this is most likely a problem with the angular-quickstart package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR!     typings install
npm ERR! You can get information on how to open an issue for this project with:
npm ERR!     npm bugs angular-quickstart
npm ERR! Or if that isn't available, you can get their info via:
npm ERR!     npm owner ls angular-quickstart
npm ERR! There is likely additional logging output above.

npm ERR! Please include the following file with any support request:
npm ERR!     c:\Code\Angular2\Quickstart\npm-debug.log

我是NodeJS和Angular2开发的新手。有什么想法吗如果我错过了任何细节,请让我知道。

xzv2uavs

xzv2uavs1#

您可以尝试在config中将注册表更改为HTTP版本

npm config set registry http://registry.npmjs.org/ --global
yyyllmsg

yyyllmsg2#

在我的例子中,将.npmrc中的ca文件添加到公司代理证书是解决方案:

npm config set cafile "path to proxy cert file"

或在.npmrc中使用编辑器插入:

cafile=<path to proxy cert file>

.npmrc文件位于主目录中。

brjng4g3

brjng4g33#

我能够通过使用此处的说明解决此问题:https://github.com/typings/typings/issues/564
这个问题最终与我的机器在一些公司代理后面有关,这似乎与npm无法对代理进行https验证有关。因为我没有任何关于代理的进一步信息,所以无法按照上面的@leetibbett建议进行配置。因此,我在根目录下创建了.typingsrc文件,以使用http版本:

{
     "rejectUnauthorized": false,
     "registryURL": "http://api.typings.org/"
}
m4pnthwp

m4pnthwp4#

我卸载了节点Js 12并重新安装了版本10。这解决了我的问题。我不确定问题是否出在版本上,但你可以试试。我希望这对你有帮助。

p4tfgftt

p4tfgftt5#

设置环境变量NODE_TLS_REJECT_UNAUTHORIZED0

相关问题