Lav Sharma
Lav Sharma

Reputation: 339

Unable to download project zip file for "https://github.com/OfficeDev/Office-Addin-TaskPane-JS/archive/yo-office.zip"

Unable to download project zip file for "https://github.com/OfficeDev/Office-Addin-TaskPane-JS/archive/yo-office.zip".
Error: self signed certificate in certificate chain

enter image description here

Upvotes: 0

Views: 1154

Answers (2)

user2832577
user2832577

Reputation: 87

I got same Issue and got resolved by

1.Setting CA Certificate 2.Defining Environment Variable

Steps

a)Get your CA Root Certificate in .pem format npm config set cafile /RootCertificate.pem

b)System Variable "NODE_EXTRA_CA_CERTS" "C:\RootCertificate.pem"

My machine is running under Zscalar

Upvotes: 0

Lav Sharma
Lav Sharma

Reputation: 339

  • Export your certificate as below
export NODE_EXTRA_CA_CERTS="<certificate_path>"

Upvotes: 0

Related Questions