Develop/MAC

npm 설치 시 SELF_SIGNED_CERT_IN_CHAIN 에러 해결 방법

codeGray 2022. 3. 28. 11:32
반응형

npm install 을 하다보면 아래와 같은 에러가 발생 할 때가 있다.

 

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

 

회사 내부 인터넷망 때문에 생기는 에러 같은데 아래 명령어를 입력하면 잘 설치 된다

 

npm config set strict-ssl false -g

 

반응형