目前,我们需要忽略.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.如何解决此问题?
npm config set cafile <full path to cert.pem>
export NODE_EXTRA_CA_CERTS=<full path to cert.pem>
46qrfjad1#
您可以只用途:
set NODE_EXTRA_CA_CERTS="path to yourrootcertificate.pem or yourrootcertificate.cer>"
或
npm config set cafile "path toyourrootcertificate.pem or yourrootcertificate.cer"
1条答案
按热度按时间46qrfjad1#
您可以只用途:
或