NodeJS NPM ssl证书颁发

cedebl8k  于 2023-03-17  发布在  Node.js
关注(0)|答案(1)|浏览(198)

目前,我们需要忽略.npmrc文件中的strict-ssl错误配置,以便安全地连接到JFrog Artifactory中托管的私有npm注册中心。
我尝试使用npm config set cafile <full path to cert.pem>export NODE_EXTRA_CA_CERTS=<full path to cert.pem>指向cert.pem文件,但两者都不起作用。
我使用的是Node.js 12.
如何解决此问题?

46qrfjad

46qrfjad1#

您可以只用途:

set NODE_EXTRA_CA_CERTS="path to yourrootcertificate.pem or yourrootcertificate.cer>"

npm config set cafile "path toyourrootcertificate.pem or yourrootcertificate.cer"

相关问题