npm에서 Proxy 세팅 방법
□ npm config에서 설정
아래와 같이 npm config를 통해서 설정이 가능하다.
$ npm config set proxy http://10.10.10.10:8080
$ npm config set https-proxy https://10.10.10.10:8080
$ npm config set strict-ssl false
$ npm config set registry http://registry.npmjs.org/
□ npm config 정보 확인
$ npm config list
□ npm config 정보 저장 위치
~/.npmrc 파일에 저장된다.
$ vi ~/.npmrc
반응형
'Linux > Proxy' 카테고리의 다른 글
Proxy setting, curl (0) | 2023.05.28 |
---|---|
Proxy setting, date - Proxy가 있을 때 시간 동기화 (0) | 2020.06.11 |
Proxy setting, jupyter notebook (0) | 2020.02.06 |
Proxy setting, conda (Windows) (0) | 2019.12.08 |
Proxy setting, pip (ubuntu) (0) | 2019.11.08 |