OpenSource

npm proxy 설정

아르비스 2016. 5. 10. 09:18

회사 환경 처럼 proxy가 설정된 환경에서 npm install을 실행하면 다음과 같은 에러가 발생한다.


error message : In most cases you are behind a proxy or have bad nework settings



npm에 proxy를 설정해 주면 간단히 해결된다.



아래의 명령어 실행을 하면 npm 명령어를 정상적으로 실행할 수 있다.

1
2
3
npm config set proxy http://xx.xx.xx.xx:8080
npm config set https-proxy http://xx.xx.xx.xx:8080
npm config set strict-ssl false

 


위와 같이 설정해준 내용은 계정하위에  ".npmrc" 파일에 저장된다.