> For the complete documentation index, see [llms.txt](https://post.cagdaskarademir.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://post.cagdaskarademir.com/2020/hotfix-npm-self-sertifika-hatasinin-coezuemue.md).

# \[HOTFIX] Npm Self Sertifika Hatasının Çözümü

Npm repolarını yükleme yaparken veya erişim sağlamaya çalıştığınızda aşağıdaki gibi bir hata alabilirsiniz.

```
npm ERR! code SELF_SIGNED_CERT_IN_CHAIN
npm ERR! errno SELF_SIGNED_CERT_IN_CHAIN
npm ERR! request to https://registry.npmjs.org/xxx failed, reason: self signed certificate in certificate chain
```

Workaround çözüm olarak aşağıdaki kodu çalıştırabilirsiniz.

```
npm config set strict-ssl false
```
