0
프록시 뒤에서 npm에 문제가 있습니다.npm이 기업 프록시 뒤에 작동하지 않고 apm에서 시작되었습니다.
npm install
은 apm에서 실행될 때 복제본을 git 할 수 없기 때문에 실패합니다. 이는 apm에서 동일한 명령 행이 작동하기 때문에 이상합니다.
npm ERR! Command failed: git -c core.longpaths=true fetch -a origin
npm ERR! fatal: Unable to look up github.com (port 9418) (Unknown host.)
.npmrc 내용
[url "https://"]
insteadOf = git://
[url "https://github.com/"]
insteadOf = [email protected]:
[http]
proxy = proxy-xxx:8080
가이 같은 명령이 작동을 수동으로 시작하는 경우 때문에 이상한 자식 URL에서 온다 보인다
proxy=http://proxy-xxx:8080
http-proxy=http://proxy-xxx:8080
https-proxy=http://proxy-xxx:8080
.gitconfig 내용.
내가 놓친 것 없나요?