unable to get local issuer certificate npm code example
Example 1: unable to get local issuer certificate git
git config --global http.sslVerify false
Example 2: request to https://registry.npmjs.org/webpack failed, reason: unable to get local issuer certificate
npm config set strict-ssl false
Example 3: SSL certificate problem: unable to get local issuer certificate
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
Example 4: SSL certificate problem: unable to get local issuer certificate
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);