bower install 실행시에 Proxy 환경일 경우 제대로 설치가 안되는 경우가 있다.
이때에는 bower.json 파일이나 .bowerrc 파일에 Proxy 설정이 필요하다.
예제
- {
"proxy": "http://yourProxy:yourPort",
"https-proxy": "http://yourProxy:yourPort",
"strict-ssl": false,
"directory": "bower_components",
"registry":"http://bower.herokuapp.com"
}
만약 bower install 명력이 동작안하는 경우 bower.json 파일을 .bowerrc 로 변경해서 bower install 을 수행하여 본다.
bower.json 은 최신 bower버전에서 도입되어 구버전의 bower일 경우 인식안되는 경우가 있다.
'Node.js' 카테고리의 다른 글
[Node.js] node 실행시 "/usr/bin/env: node: No such file or directory" 에러가 발생하는 경우 (0) | 2016.12.25 |
---|---|
[Node.js] NVM을 통한 nodejs 설치 (0) | 2016.12.21 |
[NPM] Proxy 설정 (1) | 2016.12.16 |
[Node.js] windows 에서 npm 명령 수행시 node-gyp 에러 (0) | 2016.02.29 |
[Heroku] Deploy 된 Hubot 일정시간뒤에 Sleep 되는 현상 (2) | 2016.01.12 |