npm install時にSELF_SIGNED_CERT_IN_CHAINエラー
 Author: 水卜

nodejslogo

ダウンロード元の証明書が自己証明書であるときに出る。

npm ERR! code SELF_SIGNED_CERT_IN_CHAIN
npm ERR! errno SELF_SIGNED_CERT_IN_CHAIN
npm ERR! request to https://registry.npmjs.org/@types/node/-/node-12.0.2.tgz failed, reason: self signed certificate in certificate chain

対処法

npm config set strict-ssl false

これをやると信頼性の低いサイトからもダウンロードできてしまうので、後で戻す。

npm config set strict-ssl true